Skip to content

Instantly share code, notes, and snippets.

@slavaceornea
Last active June 2, 2016 10:57
Show Gist options
  • Save slavaceornea/fe9d07a2cd611c8ecadb to your computer and use it in GitHub Desktop.
Save slavaceornea/fe9d07a2cd611c8ecadb to your computer and use it in GitHub Desktop.
Batch script to clear out all obj and bin folders
FOR /F "tokens=" %G IN ('DIR /B /AD /S bin') DO RMDIR /S /Q "%G"
FOR /F "tokens=" %G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%G"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment