Filter to exclute ._image01 > ._image10 files

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
tutman
Posts: 19
Joined: Thu May 07, 2015 8:39 am

Filter to exclute ._image01 > ._image10 files

Post by tutman »

Hi!

What would be the filter to exclude all files with no name and with an extension ._xxxxx ?
And to filter out *.!ut files too.

Thanks !
void
Developer
Posts: 16670
Joined: Fri Oct 16, 2009 11:31 pm

Re: Filter to exclute ._image01 > ._image10 files

Post by void »

What would be the filter to exclude all files with no name and with an extension ._xxxxx ?

Code: Select all

wfn:._xxxxx
wfn: means match the whole file name.
And to filter out *.!ut files too.

Code: Select all

!*.!ui
! at the start of a search means NOT.

Putting the two together:

Code: Select all

wfn:._xxxxx !*.!ui
Post Reply