vote up 3 vote down star
1

I need a way to recursively delete a folder and its children, is there a prebuilt tool for this, or do I need to write one?

DEL /S doesn't delete directories.

DELTREE was removed from Windows 2000+

flag

53% accept rate
Does del /s (a) not work at all (it's only available in some versions) or (b) leave the top-level directory but delete everything under it or (c) leave all directories while deleting all files? – wnoise Sep 19 '08 at 2:59
@Aaron, answer c, you need to use rmdir /s to remove directories and files. – Wedge Sep 19 '08 at 10:38

10 Answers

vote up 7 vote down check

RMDIR or RD:

rd /s /q
link|flag
It's worth pointing out that for large numbers of files, rmdir /s /q is typically significantly faster than the equivalent "select dir, shift + delete" operation in explorer. – Wedge Sep 19 '08 at 0:29
Thanks!! This helped me. Now if I can just get used to typing 'dir' instead of 'ls' – Derek Nov 12 at 17:22
vote up 0 vote down

You can install GnuWin32 and use *nix commands natively on windows. I install this before I install anything else on a minty fresh copy of windows. :)

link|flag
vote up 2 vote down

admin:

takeown /r /f folder
cacls folder /c /G "ADMINNAME":F /T
rmdir /s folder

Works for anything including sys files

link|flag
vote up 0 vote down

There is also deltree if you're on an older version of windows.

I really like this site for finding commands: SS64: Del - Delete Files

link|flag
vote up 1 vote down

You can install cygwin, which has rm as well as ls etc.

link|flag
vote up 2 vote down

RMDIR [/S] [/Q] [drive:]path

RD [/S] [/Q] [drive:]path

  • /S Removes all directories and files in the specified directory in addition to the directory itself. Used to remove a directory tree.

  • /Q Quiet mode, do not ask if ok to remove a directory tree with /S

link|flag
vote up 1 vote down

rmdir /S /Q %DIRNAME%

link|flag
vote up -1 vote down

Try this command:

del /s foldername
link|flag
vote up 1 vote down

rmdir /s dirname

link|flag
vote up -1 vote down

http://www.computerhope.com/delhlp.htm

del /s
link|flag
Doesn't delete the directories. – FlySwat Sep 18 '08 at 23:11

Your Answer

Get an OpenID
or

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