I need to do a search to pull up all the files that do not have the extension .mp3 in a windows folderIs there any sort of NOT operator so I can say NOT *.mp3?Is my only option to write a script or batch file?
5/25/2006 12:58:26 PM
getting rid of all the album art? I would just do a search for *.*, the select view-details, click the type button and from there you can easily select all the non-mp3 files.[Edited on May 25, 2006 at 1:12 PM. Reason : ]
5/25/2006 1:11:24 PM
yeah I like my music folder to just be musicI just did specific searches for each extension, it sucks windows can't use basic boolean queries.
5/25/2006 2:18:28 PM
how about:mkdir tempmove *.mp3 tempdel *.*move temp\*.mp3 .rmdir temp
5/25/2006 2:32:05 PM
Shouldn't all the album art be .jpg, or .bmp?Just del*.jpg
5/25/2006 2:42:17 PM
5/25/2006 2:47:54 PM