Batch file operations

Associate
Joined
31 Jul 2006
Posts
13
Hello,

I have recently recovered a lot of files in many folders. Unfortunately each of these folders is filled with various dlls etc from previous installations. I was wondering if there was a program which could delete all files from all folders except those with a particular file extension.

Thanks
 
Try for a duplicate file remover program, this may work, if not you could probably do it with careful use of the windows search tool
 
how many other file types are there?

if it's say 5 (dll, exe, tmp, log, txt) that you want to remove

then just use..

del /Q /S *.dll

run that from the top dir in the structure.. (not C:\ though :p )
 
Back
Top Bottom