Skip to content

Instantly share code, notes, and snippets.

@dalbertom
Created November 1, 2010 18:36
Show Gist options
  • Select an option

  • Save dalbertom/658658 to your computer and use it in GitHub Desktop.

Select an option

Save dalbertom/658658 to your computer and use it in GitHub Desktop.
in windows, deleting a very long path of directories fails. This can help deleting them.
dir /s/b/ad > dirs.txt
sort /r dirs.txt > sorteddirs.txt
for /f %a in (sorteddirs.txt) do (
subst x: /d
subst x: "%a" && rd /s/q x:
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment