Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Has Windows 7 Fixed the 255 Character File Path Limit?

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.

like image 515
The Matt Avatar asked Jun 30 '09 20:06

The Matt


2 Answers

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.

like image 193
Drew Hoskins Avatar answered Sep 20 '22 07:09

Drew Hoskins


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

like image 21
Joshua Avatar answered Sep 19 '22 07:09

Joshua