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?
|
|
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 ( |
|||||||||||||||
|
|
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. |
|||||
|
|
255 characters. |
|||
|
|
|
According to MSDN, it's 260 characters. But read the article, it's a bit more complicated. |
|||
|
|
|
The length in NTFS is 255. The 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). |
||||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
I'm adding this to the above approved answer. TO BE CLEAR, the reason people believe it to be 255-260 characters is because that is all that Windows Explorer supports. It will error out doing something like a file copy on filenames longer than that. However, a program can read and write much longer filenames (which is how you get to lengths that Explorer complains about in the first place). Microsoft's "recommended fix" in situations like this is to open the file in the original program that wrote it and rename it. |
|||
|
|
Actually it is 256, see File System Functionality Comparison, Limits. To repeat a post on http://fixunix.com/microsoft-windows/30758-windows-xp-file-name-length-limit.html "Assuming we're talking about NTFS and not FAT32, the "255 characters for path+file" is a limitation of Explorer, not the filesystem itself. NTFS supports paths up to 32,000 Unicode characters long, with each component up to 255 characters. Explorer -and the Windows API- limits you to 260 characters for the path, which include drive letter, colon, separating slashes and a terminating null character. It's possible to read a longer path in Windows if you start it with a \" If you read the above posts you'll see there is a 5th thing you can be certain of: Finding at least one obstinate computer user! |
|||||
|
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.

