Delete BIN OBJ Folders.bat 212 B

123456789
  1. @echo off
  2. @echo Deleting all BIN, OBJ folders...
  3. for /d /r . %%d in (bin,obj) do @if exist "%%d" rd /s/q "%%d"
  4. @echo.
  5. @echo BIN and OBJ folders successfully deleted :) Close the window.
  6. @echo.
  7. @echo.
  8. pause > nul