vote up 0 vote down star

Hi,

i use windows.

i want to delete all files and folders in a folder by system call.

i may call like that:

>rd /s /q c:\destination
>md c:\destination

do u know an easier way?

flag

42% accept rate

2 Answers

vote up 2 vote down check

No, I don't know one.

If you want to retain the original directory for some reason (ACLs, &c.), and instead really want to empty it, then you can do the following:

del /q destination\*
for /d %x in (destination\*) do @rd /s /q %x
link|flag
it's the way to do it – Peter Kofler Oct 1 at 9:42
vote up 0 vote down

Why not use unix commands on windows?

See http://unxutils.sourceforge.net/

link|flag
1  
Definitely easier, right ... We trade in two short lines of code for a download, an installation and, like, 300 executables. – Johannes Rössel Oct 1 at 9:42

Your Answer

Get an OpenID
or

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