Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andre-f-paggi/eb9a3781c09d2e315770f0b5ef5c19a8 to your computer and use it in GitHub Desktop.
Save andre-f-paggi/eb9a3781c09d2e315770f0b5ef5c19a8 to your computer and use it in GitHub Desktop.
Remove as pastas "bin" e "obj" de todos subdiretórios a partir do diretório atual
for /d /r . %%d in (bin,obj) do @if exist "%%d" rd /s/q "%%d"
@andre-f-paggi
Copy link
Author

for /d /r . %d in (bin,obj) do @if exist "%d" rd /s/q "%d"

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