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

link|improve this question

7  
I've never seen so many different answers to what ought to be a simple question. 199, 255, 256, 257, 260, 'about 30 000', 'approximately 32 000', and 'it depends'. Sure, there are qualifiers, but these can't all be right can they? – mickeyf Aug 24 '10 at 14:18
1  
its 255, I know this as I had to build an application to prevent corporate users from reaching this, as it causes issues on our storage servers. – RobertPitt Jan 20 '11 at 21:57
   
@RobertPitt. You are missing something in there. Quote from MSDN: "the maximum length for a path is MAX_PATH, which is defined as 260 characters" – Michael9000 Nov 3 '11 at 12:14
1  
@Michael9000. I believe RobertPitt was quoting the filename limit (which is what this question is about), not the path limit. – gdw2 Nov 16 '11 at 16:31
feedback

8 Answers

up vote 53 down vote accepted

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|improve this answer
Here is some more facts that confirms this answer (Windows is normally limited to 260 characters): msdn.microsoft.com/en-us/library/… and blogs.msdn.com/b/bclteam/archive/2007/02/13/… – Michael9000 Nov 3 '11 at 12:34
Correct for NTFS, not correct for Windows, according to the link you provided: "In the Windows API (with some exceptions discussed in the following paragraphs), the maximum length for a path is MAX_PATH, which is defined as 260 characters". The total path is, for all practical purposes, limited to 259 characters (allowing for the null-terminator). – Software Monk Mar 14 at 6:49
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

199 on Windows XP NTFS, I just checked.

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

Is there some other setting limiting this, I wonder? Try it for yourself.

link|improve this answer
Confirmed this on my version of XP, what a pain – Julian Young Jul 13 '11 at 9:57
feedback

255 characters.

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

link|improve this answer
feedback

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|improve this answer
feedback

The length in NTFS is 255. The NameLength field in the NTFS $Filename attribute is a byte with no offset; this yields a range of 0-255

The file name iself can be in different "namespaces". So far there are: POSIX, WIN32, DOS and (WIN32DOS - when a filename can be natively a DOS name). (Since the string has a length, it could contain \0 but that would yield to problems and is not in the namespaces above.)

Thus the name of a file or directory can be up to 255 characters. When specifying the full path under Windows, you need to prefix the path with \?\ to mark this path as an extended-length one (~32k characters). If your path is longer, you will have to set your working directory along the way (ugh - side effects due to the process-wide setting).

link|improve this answer
feedback

Actually it is 256, see File System Functionality Comparison, Limits.

link|improve this answer
No - it is 255. The NameLength field in the NTFS $Filename attribute is a byte with no offset; this yields a range of 0-255 – Dominik Weber Aug 24 '10 at 13:44
feedback

protected by Will Jan 20 '11 at 22:11

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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