Skip to content

Instantly share code, notes, and snippets.

@johnhutchins
Last active August 25, 2018 14:47
Show Gist options
  • Save johnhutchins/90c4102b28a2df923997da9f3a46e97a to your computer and use it in GitHub Desktop.
Save johnhutchins/90c4102b28a2df923997da9f3a46e97a to your computer and use it in GitHub Desktop.
delete Bin and Obj folders from directory (run in CMD)
for /d /r . %d in (bin,obj) do @if exist "%d" rd /s/q "%d"
@manriquelogany2k
Copy link

Awesome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment