Getting Around Windows 7 "Destination Path Too Long" Error When Deleting Files
Years ago when I started learning VBA for Excel, I was reading a book by John Walkenbach and he compared learning macros in Excel to using a remote control - once you learn it you don't know how you lived without it. I would say that is true of scripting in general.
The bad news is that programming is also like using a credit card, inasmuch as you can get yourself into a depth of problem just not possible without it.
I got experience with that first hand recently when one small programming mistake caused a bit of a disaster on my computer.
My plan was that I would write some automated tests to test a vanilla installation of the Neptune framework. As part of this, I back up my CustomTags folder by renaming it "CustomTag_BAK" - easy enough.
Unfortunately, I made a mistake while making some changes that caused it to copy "CustomTags/_BAK". Worse yet, I did this using a recursive bit of code (if programming is dangerous, recursion is doubly so). The effect of which was several levels deep of "_BAK" folders in my CustomTags folder.
Actually, "several" doesn't cut it. It was thousands of levels deep. I'm not sure how many as Windows seemed to stop counting. This seemed an easy problem to solve, however. I just highlighted the folder on clicked delete.
"Destination Path Too Long"
The problem is that Windows cannot delete a file whose path is longer than 256 characters long. It will let you create files with paths longer than this, but not delete them.
So, how to fix it? Well, I found a page by Microsoft that suggested some solutions (which I'll simplify a bit).
Rename the folder names
This is a nice idea, but as I have more than 256 folders, it really won't help.
Manually move the file to another folder
This is a good solution if the problem is that the folder is just a little bit too long. The problem is that if the folder you move is still too long then you still can't delete it.
So, in my case, I would have to find the deepest folder and start from there. Several minutes of clicking to get there showed me that I was no closer to it then when I started.
Create a virtual drive
This would work well if my folder depth totaled less than 256 X 26 characters long (that is the character limit times the number of letters in the alphabet and thereby the number of virtual drives I could create). Again, my problem was much worse than this.
At this point, I have to admit that I was feeling a little concerned. Here I start to consider just dumping my computer and restoring from back-up. Unfortunately, due to not noticing the problem quickly enough this will mean that I either restore from a back-up that has the problem I am trying to fix or from one that is missing some of what I need (or go through a painful process of cherry-picking files).
Nope, there has to be a better way.
Fortunately there is (or this would be a depressing blog entry).
Move the files with a Script
Someone (I can't find who anymore, sorry) wrote a nice .bat file that (with a little bit of editing) solved by problem. They named the file "recupera.bat", so I kept that name.
recupera.bat:
move c:\ColdFusion9\CustomTags\_BAK\_BAK\x c:\ColdFusion9\CustomTags\_BAK
rd c:\ColdFusion9\CustomTags\_BAK\_BAK
ren c:\ColdFusion9\CustomTags\_BAK\x _BAK
repucera.bat
So, what does this do?
This takes "c:\ColdFusion9\CustomTags\_BAK\_BAK" and renames it to "c:\ColdFusion9\CustomTags\_BAK\x". Apparently Windows has no problem renaming paths even if the result is a path that is too long for it to work with.
This moves all of the files from "c:\ColdFusion9\CustomTags\_BAK\_BAK\x" to "c:\ColdFusion9\CustomTags\_BAK". So, now "c:\ColdFusion9\CustomTags\_BAK" has two folders: "x" and "_BAK". The "x" folder still has tons of subfolders, but the "_BAK" folder is empty.
This just removes the now empty nested "_BAK" folder.
This renames the "x" folder (which has tons of nested "_BAK" folders) back to "_BAK". Now my situation is the same as when I started except that one folder has been removed.
This just executes the .bat again - a nice loop. At some point the "ren" line will throw an exception because the "c:\ColdFusion9\CustomTags\_BAK\_BAK" will no longer exist. This will stop the loop. At this point the problem is finally solved.
So, if you ever find yourself in the bind that I created for myself then feel free to take this code and modify it to suit your problem (renaming the path to the location of your problem).
Hopefully I will never need this again.
This problem is no longer a considered a hassle because it has been solved.
There is away to fix this problem and the name of that software is LONG PATH TOOL.
I highly recommend it to you since I have already used it.
check it out: http://longpathtool.com
In this case, the solution was simple enough that installing software wasn't necessary.
It has been a while since I did this, but you may have to right-click on command prompt and select "Run as administrator" in order for the commands executed from there to have permissions to do this.
Window 7 is kind of weird about that kind of stuff.
Thanks,
Steve
robocopy...
robocopy C:\EMPTY_DIRECTORY C:\DIRECTORY_WITH_SUB_OR_FILE_TOO_LONG\...\ /PURGE /W:1 /R:1 /V /S
result a false copy but that clean up all...
enjoy!
result a false copy but that clean up all...
This WORKS! I had Google Drive installed and it made a folder structure that was 705 folders deep! I've been trying to delete them for DAYS, but nothing worked until I used this line in the command prompt (I was running CMD as ADMINISTRATOR, not sure if it mattered). I know this post is old but STILL RELEVANT! Thank you for posting it!
http://www.sysadmit.com/2015/08/windows-borrar-rut...
Trust me people this tool is brilliant !! - A must for all Administrators Toolbox.
http://ipmsg.org/tools/fastcopy.html.en