Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As I understand it, the limitation of 255 characters in a file path is a Windows limitation. What is the reasoning for this? If so, has this been resolved in Windows 7?

In our continuous integration practices, we often have deeply nested project structures and it would be extremely useful to be able to go beyond 255 characters. Right now we are somewhat forced to structure our projects in such a way as to not hit this artificial ceiling.

share|improve this question
4  
It's never been 255 anyway, the limit is MAX_PATH which equals 260 – David Heffernan Feb 14 '11 at 14:51
@DavidHeffernan But that 260 includes the null character at the end and the `C:\` at the beginning, so only 255 characters are usable. – Aaron Dufour Apr 24 at 16:59
@AaronDufour 260-4 != 255 – David Heffernan Apr 24 at 17:00
@DavidHeffernan I was mistaken. Microsoft often quotes the length as 256, which is what you get when you subtract properly, rather than 260, which is technically the limit. – Aaron Dufour Apr 24 at 18:21

2 Answers

up vote 18 down vote accepted

See http://msdn.microsoft.com/en-us/library/aa365247(VS.85).aspx

This explains that Unicode versions of Windows APIs have higher limits, and how to enable that.

share|improve this answer
5  
But a word of warning: There's a bunch of code (mostly 3rd party system utilities and the like) that doesn't play well with longer paths. You may have issues with that if you start using longer paths. – Larry Osterman Jul 4 '09 at 15:15
Is this article correct? I did a simple teste with both Windows Explorer and Windows Command Prompt in Windows 7 and I'm not able to create file paths with over 260 characters. Has Microsoft not updated these applications to use the Unicode versions of the Windows APIs? – Templar Aug 20 '12 at 20:58

You can get around that limit by using subst if you need to.

share|improve this answer
1  

protected by Community Sep 27 '11 at 13:05

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.