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

I have come up against this problem a few times at inopportune moments:

  • trying to work on open source Java projects with deep paths
  • Storing deep Fitnesse wiki trees in source control
  • An error trying to use Bazaar to import my source control tree

Why does this limit exist?

Why hasn't it been removed yet?

How do you cope with the path limit? ... and no, switching to linux or Mac OS X is not a valid answer to this question ;)

share|improve this question
1  
Symlinks! No, wait... – Artelius Dec 10 '09 at 11:19
2  
@Artelius: Actually, Windows (at least from Win2K onwards) does support junction points (en.wikipedia.org/wiki/NTFS_junction_point), and Vista onwards support NT Symbolic links (en.wikipedia.org/wiki/NTFS_symbolic_link). Anyway, while symlinks can help make longer/nested paths more friendly, I can't think how symlinks would help if you're hitting path length limits. – Ashutosh Mehra Dec 10 '09 at 11:29

5 Answers

up vote 16 down vote accepted

Read this article it helps you http://msdn.microsoft.com/en-us/library/aa365247(VS.85).aspx#maxpath

share|improve this answer

This is not strictly true as the NTFS filesystem supports paths up to 32k characters. You can use the win32 api and "\\?\" prefix the path to use greater than 260 characters.

A detailed explanation of long path from the .Net BCL team blog.
A small excerpt highlights the issue with long paths

Another concern is inconsistent behavior that would result by exposing long path support. Long paths with the \\?\ prefix can be used in most of the file-related Windows APIs, but not all Windows APIs. For example, LoadLibrary, which maps a module into the address of the calling process, fails if the file name is longer than MAX_PATH. So this means MoveFile will let you move a DLL to a location such that its path is longer than 260 characters, but when you try to load the DLL, it would fail. There are similar examples throughout the Windows APIs; some workarounds exist, but they are on a case-by-case basis.

share|improve this answer
1  
Fair enough, but it means you have to use P/Invoke in a lot of places and this, to my mind, reduces the portability of your .Net code. What if I wanted to keep Mono-compatibility? – Jeffrey Cameron Dec 10 '09 at 22:50
My point was that you can use long path if you really wanted to. But I agree that it is a pain and personally I would avoid this as well. – Pratik Dec 11 '09 at 2:12
This should be the chosen answer. Actually answers the question posed by user of WHY this limit exists AND provides a work-around. Upvote for visibility – KyleMit Mar 20 at 21:06
It sounds to me that Microsoft needs to fix their APIs, and I guess this is not a priority. I was surprised that this limit still exists in Windows 8. – Mas May 15 at 15:16

You can mount a folder as as drive. From the command line:

subst x: /path/to/long/folder
share|improve this answer

We just migrated to TFS, and ran into the exact same problem. In our case, our folder depth and folder names are not extremely deep or long in and of themselves. However, when coupled with the full namespace being generated as file names through Visual Studio's "Add Webservice reference" code generation, it becomes problematic using TFS.

I just put a lot of time making the case for our company to move to TFS only to find that we get this error trying to branch. Our previous source control did not have this issue, and we may end up having to move back.

Visual Studio itself is generating these long service reference files based on namespace. The underlying file system supports longer names. Having clear namespaces and folders makes it easier for people unfamiliar with the codebase to understand your product framework. The whole point of the auto generated code is to save time and money. We can't afford to go through a large codebase renaming all folders and files to something short and cryptic every time we hit this because a code generator names files like this.

Development has evolved. This needs to be addressed. Until it does, it's a huge minus for TFS, and has made it lose my recommendation over other source control systems (there are even free ones don't have this limitation).

share|improve this answer
2  
I would suggest that TFS is a huge minus in general, but I digress ;) – Jeffrey Cameron Mar 7 '12 at 0:56

I'm sure Raymond Chen wrote something about this once, but i can't find it anywhere. In any case the popular consensus is that you have 256 bytes for the path, plus four more bytes for either prefixing or suffixing or containing terminating null characters.

share|improve this answer
1  
You might be thinking of this post by Jeff Atwood in which he quotes Raymond Chen – Geoff Oct 17 '11 at 21:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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