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+
|
1
|
|||||
|
|
|
RMDIR or RD:
|
||||
|
|
|
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. :) |
||
|
|
|
|
admin:
Works for anything including sys files |
||
|
|
|
|
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 |
||
|
|
|
|
You can install cygwin, which has |
||
|
|
|
|
RMDIR [/S] [/Q] [drive:]path RD [/S] [/Q] [drive:]path
|
|||
|
|
|
|
|
||
|
|
|
|
Try this command:
|
||
|
|
|
|
rmdir /s dirname |
||
|
|
|
|
|
||
|