I'm trying to write a windows script that will remove every bin
and obj
folder in my project folder. It just doesn't work..
I found this:
for /d /r . %d in (_svn) do @if exist "%d" rd /s/q "%d"
so I've tried:
for /d /r . %d in (bin) do @if exist "%d" rd /s/q "%d"
but it didn't work. The closest I've been is:
FOR /D %%p IN ("C:\temp\test\*.*") DO rmdir "bin" /s /q
it removes bin folder from first layer, but not in subfolders
Thanks for help
Like this:
for /d /r . %%d in (bin obj) do @if exist "%%d" rd /s/q "%%d"
@echo off @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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With