Possible Duplicate:
What is the longest file path that Windows can handle?
Does anybody know if it is possible to extend the maximum path length in Windows 7 (64-bit)?
Does anybody know if it is possible to extend the maximum path length in Windows 7 (64-bit)? | ||||
|
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
Unfortunately the answer is "depends on the program". It is up to the people who write the programs to determine which method they want to use. In fact, (shameless plug) I wrote a blog entry a few weeks ago describing the problem at Explorer still limited by MAX_PATH. Depending on what you're trying to do you could use another program to manage the long paths, like Microsoft Word. Otherwise, your only other option is to just "live with it" since it's been like that forever and doesn't seem to be changing anytime soon. Just thought I'd also mention that 64-bit Windows also uses the "Win32" API and EDIT: Geeky Details The problem exists only in the | |||||||||||
feedback
|
|
The SUBST command which is included in Windows 7 will allow access to a longer path via the new virtual drive letter.
| |||
|
feedback
|
|
The Win32 API limits a file path to 255 characters (including the drive letter). No, you cannot increase that limit. If you need more, you're probably trying to solve your problem the wrong way. | |||||||||
feedback
|
|
Use a Junction Point to provide a shorter path into a longer path. | |||
|
feedback
|