I left in the @echo clause just so you can see what it will do before actually doing it. You will therefore need to remove the @echo in order for it to actually remove the garbage folders.
Main Topics
Browse All TopicsHi,
I have a folder named Test with sub directorties. I'd like to be able to create a simple batch file that deletes all folders within test and test's sub directories that match a supplied name. I know how to create the batch command but im not sure how i can create the recursive delete using a DOS command.
i.e if i want to delete any folder with the name "garbage" with in the folder test and its sub directories is there a command I can issue such as
rmdir c:\test\ "garbage" -s - q
that will delete all folders with test including any folder named "garbage" within the folder test recursively.
Thanks,
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
so yes, in a batch file, the command you posted looks correct. I'm re-posting to add surrounding quotes, and an IF clause to check for the directories existence, since the parent directories may be removed before the children:
c:
cd c:\test
for /f %%D in ('dir/s/b/ad ^| find/i "garbage" ') do if exist "%%D" rd/s/q "%%D"
Business Accounts
Answer for Membership
by: knightEknightPosted on 2008-09-17 at 12:28:07ID: 22502660
c:
cd c:\test
for /f %%D in ('dir/s/b/ad ^| find/i "garbage" ') do @echo rd/s/q %%D