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+
feedback
|
|
RMDIR or RD:
| |||||||||
feedback
|
|
RMDIR [/S] [/Q] [drive:]path RD [/S] [/Q] [drive:]path
| ||||
|
feedback
|
|
admin:
Works for anything including sys files | |||
|
feedback
|
|
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 | |||
|
feedback
|
|
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. :) | |||
|
feedback
|
|
| |||||
feedback
|