Hi I want to delete the contents of a directory and all it's subdirectories and files under it.
Perl says you can add -U to include subdirectories but it's unsafe to your file system. Is it unstable or just dangerous to logic errors (if you do unlink(C:\\)?
rmdir only removes the subdirectories if they are empty. I don't want to traverse a directory.. I rather shell out if that is necessary.