Subject: | POD: remove_tree() shouldn't be compared to del /s |
The documentation for remove_tree could confuse some users:
The remove_tree function deletes the given directories and any files
and subdirectories they might contain, much like the Unix command rm -r
or del /s on Windows.
On NT based boxes (at least) rm -r != del /s. del /s will only delete
files under the given dir -not directories.
To delete the tree one would have to use rmdir /s or rd /s.
-Skye