vote up 2 vote down star
1

I need to write a batch file that received a directory that contains a huge number of empty sub-directories and deletes them all.

What's the fastest way of doing this? (by fast I mean not like what Windows Explorer does when you try to delete such a directory...)

Clarification:

I'm not trying to delete only empty directories. It just so happens that this dir I'm trying to delete is mostly empty sub-dirs.

flag

2 Answers

vote up 4 vote down check
rd yourdirname /s/q

Will do the job regardless of whether they are empty or not.

link|flag
I think the whole point of deleting empty directories is about to not delete the non-empty ones :) – Johannes Rössel May 25 at 10:07
@Johannes, no that wasn't the point actually. I'll edit and clarify – Assaf May 25 at 17:17
vote up 1 vote down

I'm not sure if I understood the question. If you just want to delete the tree then you can just use rd /s. However, if you only want to delete empty directories, then you can do the following using Cygwin.

find -type d -empty | xargs rmdir

The standard IT build where I work has Cygwin installed, and I've used this more than once.

link|flag
If you have Cygwin installed yoy can do "rm -rf dirname" – HED May 25 at 6:11
That will erase all directories, not only empty ones. – Nathan Fellman May 25 at 7:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.