Hi guys,
need help with a script that searches the computer for all directories called Debug for ex. and delete them
any help much appreciated.
thanks
delete specific directory
Moderator: DosItHelp
Re: delete specific directory
Code: Select all
for /f "delims=" %%a in ('dir /ad/b/s C:\Debug') do echo rd /q/s "%%a"
remove ECHO command for delete