Search code examples
windowsbatch-filecommandbatch-processingwindows-console

Windows cmd which removes every bin and obj folders


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


Solution

  • Like this:

    for /d /r . %%d in (bin obj) do @if exist "%%d" rd /s/q "%%d"