Windows 7 Ultimate 64bit:
I'm looking for a way to find all the files in a directory that are NOT of a specific file type or extension.
Example: I'd like to find every file that isn't an .mp3 in my music folder (and all sub folders).
feedback
|
|
type this in the search box of the directory you want to search
| |||
|
feedback
|
|
From a command prompt you can pipe the direcotry list into findstr, and use findstr's
| |||
|
feedback
|
|
You could try
The /L flag forces xcopy to only list but not copy the /s runs through all subfolders and the exclude misses out mp3s | |||
|
feedback
|
|
For a quick look I sort by clicking on the type column header in Explorer. There is a pull down option to tick boxes for only the files you want listed. | |||
|
feedback
|
|
You can check a mime-type with:
and then write a script. | |||
|
feedback
|
|
I just open the folder with Windows Explorer, add the Type column to the display, and sort on it. | |||
|
feedback
|