Windows – windows app with a preview function to recursively delete by wildcard

wildcardswindows

I'd like to do a … delete *.dll from a folder, but preview it to make sure there aren't actually any folder names I have forgotten are there that I would actually want to keep. Other possiblities: *svn* or *ReSharper*

Is there a program that will let me preview and do a wildcard delete? preferably with a friendly UI.

Best Answer

dir *.dll /S
del *.dll /S

If you really want to be careful:

del *.dll /S /P

Why bother with a UI?

Related Question