Hi,
How would I search for all files that don't end in a certain extension?
Searching for files that don't end in a certain extension?
Re: Searching for files that don't end in a certain extension?
If you had a drive of MP3's (more generally, music) & you wanted to find all files that were not *.mp3:
The '!' is a NOT operator (I suppose, at least it seemed to work).
You can also combine NOT's:
So not mp3, not mid (midi), not m4a.
And it then might find ogg & wma, if you had any.
Code: Select all
!.mp3
You can also combine NOT's:
Code: Select all
!.mp3 !.mid !.m4a
And it then might find ogg & wma, if you had any.