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
|
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
|
|||
|
|
|
|
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 ( |
||
|
|
|
|
255 characters. |
||
|
|
|
|
According to MSDN, it's 260 characters. But read the article, it's a bit more complicated. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
|
||
|
|
|
|
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 |
||||
|