vote up 5 vote down star
2

Quick and simple question which I need the answer to.

I'm designing a database table which will hold filenames of uploaded files. What is the maximum length of a filename in NTFS; aka Windows XP or Vista?

Many Thanks

flag

8 Answers

vote up 15 vote down check

Individual components of a filename (i.e. each subdirectory along the path, and the final filename) are limited to 255 characters, and the total path length is limited to approximately 32,000 characters. However, you should generally try to limit path lengths to below 260 characters (MAX_PATH) when possible. See http://msdn.microsoft.com/en-us/library/aa365247.aspx for full details.

link|flag
vote up 2 vote down

255 characters.

http://en.wikipedia.org/wiki/Filename

link|flag
vote up 2 vote down

According to MSDN, it's 260 characters. But read the article, it's a bit more complicated.

link|flag
vote up 2 vote down

199 on XP NTFS, i just checked.

This is not theory but from just trying on my laptop, there may be mitigating affects but it physically won't let me make it bigger.

Is this some other setting limiting this i wonder, try it for yourself.

link|flag
vote up 1 vote down

255 chars, though the complete path should not be longer than that as well. There is a nice table over at Wikipedia about this: http://en.wikipedia.org/wiki/Filename.

link|flag
vote up 1 vote down

It's 257 characters. To be precise: NTFS itself does impose a maximum filename-length of several thousand characters (around 30'000 something). However, Windows imposes a 260 maximum length for the Path+Filename. The drive+folder takes up at least 3 characters, so you end up with 257.

link|flag
vote up -1 vote down

Thanks for all the answers.

I've tested this out and found that the answer depends on where you are storing the file. Storing a file in root C allows you the maximum of 255 characters while storing it in a sub folder allows you less.

Again, Thank you
Stephen

link|flag
1  
Well obviously, because the canonical path of a file in a sub folder includes the root! – Daniel Goldberg Oct 29 at 23:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.