Skip to content
5 changes: 5 additions & 0 deletions delete-bin-obj.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo on
@echo Deleting all BIN and OBJ folders…
for /d /r . %%d in (bin,obj) do @if exist %%d rd /s/q %%d
@echo BIN and OBJ folders successfully deleted :) Close the window.
pause > nul