How do I search for files that AREN'T of a certain extension?

Marduk

Gawd
Joined
Jun 22, 2005
Messages
882
I've got 160gb worth of mp3s on my server.


However, there are some files in the folders that are not mp3 files(.ini, .cue, etc.). I would like to find those, and eliminate them.



Any suggestions on how to do this?
 
If you know all the file extensions you can do a
del *.cue /s
del *.bin /s

etc on the parent directory.
 
Search on *.*, then sort the result by type. Everything that's not in the MP3 portion of the output can be deleted.
 
Back
Top