I\'m using a xcopy in an XP windows script to recursively copy a directory. I keep getting an \'Insufficient Memory\' error, which I understand is because a file I\'m tryin
TLPD ("too long path directory") is the program that saved me. Very easy to use:
https://sourceforge.net/projects/tlpd/
do a dir /s /b > out.txt and then add a guide at position 260
dir /s /b > out.txt
In powershell cmd /c dir /s /b |? {$_.length -gt 260}
cmd /c dir /s /b |? {$_.length -gt 260}