Advertisement
Alexandr0v

DeleteBinObjFolders

Mar 20th, 2025
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.19 KB | Source Code | 0 0
  1. @echo off
  2. @echo Deleting all BIN and OBJ folders...
  3. for /d /r . %%d in (bin obj) do @if exist "%%d" rd /s/q "%%d"
  4. @echo BIN and OBJ folders successfully deleted :) Close the window.
  5. pause > nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement