I'm in need of something that replicates the Unix rm command easily from Windows XP. Recursive traversal and wildcard deletion is really important. However, it'd be nice if it worked through a graphical layer that showed me the files I was going to be deleting first so I can do a quick scan to make sure nothing that I need is in there. Anyone know of such a program?
The most intuitive approach (del) just did something that makes me very reticent to use it. To me:
Ought to recursively delete all files beginning with the characters ck from the current directory and all subsequent subdirectories. It doesn't. (Hence the /p, to make sure my test didn't screw me.) I know how to make it work right, but frankly I don't want to leave my data up to me remembering to do it DOS-wise instead of Unix-wise.Code:del /p /s ck* .


Reply With Quote