Search filters on version 1.2.1.451a

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
fabioq
Posts: 11
Joined: Wed Dec 02, 2009 5:59 am

Search filters on version 1.2.1.451a

Post by fabioq »

Does any one know the syntax to exclude certain files files from a Search filter. For example I have the following search filter:

file:nocase:*.zip file:nocase:!cb*.zip file:nocase:!ps*.zip file:nocase:!wx*.zip

This means I basically want to include every zip file, except for files that begin "cb", "ps" and "wx", however I want a second filter that just includes files that begin with with the above - and this is where I need help. I've tried the following:

file:nocase:cb*.zip file:nocase:ps*.zip file:nocase:wx*.zip

and doesn't seem to work. By itself if i create three different filters (for each of them), will work:

file:nocase:cb*.zip

and so on for the other two, but I'd prefer if all three work with with one filter.

-Fabio
therube
Posts: 4713
Joined: Thu Sep 03, 2009 6:48 pm

Re: Search filters on version 1.2.1.451a

Post by therube »

Code: Select all

file:nocase:<cb*.zip|ps*.zip|wx*.zip>
fabioq
Posts: 11
Joined: Wed Dec 02, 2009 5:59 am

Re: Search filters on version 1.2.1.451a

Post by fabioq »

Thanks therube!....you're a genius!....by the way is there place in the wiki or anyplace else to find what can be included within those fields - doing F1 did not bring up any help, I sort of stumbled into the ! to mean NOT, I take it the | symbol is an OR is there a symbol for AND? or is that what : is supposed to be?

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

Re: Search filters on version 1.2.1.451a

Post by void »

http://support.voidtools.com/everything/Search_syntax

A space is the symbol for AND.

You can use double quotes to escape spaces.
Post Reply