About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
cachaito
4/4/2015 - 12:15 PM
share
Share
add_circle_outline
Save
Remove folder with long name filenames
remove folder with long name filenames.md
content_copy
file_download
Rendered
Source
make an empty folder, called for example empty:
mkdir c:\empty
invoke robocopy to mirror the empty directory into the bad one:
robocopy c:\empty\ c:\bad_folder\ /mir
at the end of the process you can delete the two directories, the bad one and the empty you created at the beginning:
rmdir c:\empty c:\bad_folder
clear