Skip to content

Instantly share code, notes, and snippets.

@joaofx
Created August 26, 2016 10:37
Show Gist options
  • Select an option

  • Save joaofx/8b71ad40fa9993b9ddce0e0be103cae5 to your computer and use it in GitHub Desktop.

Select an option

Save joaofx/8b71ad40fa9993b9ddce0e0be103cae5 to your computer and use it in GitHub Desktop.
Delete bin and obj recursively on Windows
REM delete bin
for /r %R in (bin) do if exist %R (rd /s /q "%R")
REM delete obj
for /r %R in (obj) do if exist %R (rd /s /q "%R")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment