MAX_PATH error on SVN checkout
|
|
I’m now receiving the error below from Koders on our SVN repo. I assume this means that our directory structure is nested too deeply. Any way around this, or other thoughts? Thanks. Mike
|
|
|
Hey Mike, This is caused by a limit in the windows path limit (http://www.codinghorror.com/blog/archives/000729.html). One way to get around this is to shorten the path as much as possible. To do that you can move our “FileStore” location to a shorter path such as “C:\FS”
to
The final two steps are:
|
|
|
Thanks, Ben. I did those steps and that shortened the path, but it still turns out to be just a little too long for some of our directories. So I’ve switched to using the file system adapter and a scheduled batch file to update the code periodically. |
|
|
Glad that you got it to work. We are working on a fix for this which involves keeping all paths in Unicode, and will let you know when it is deployed. |
