[NOT FOUND] or [EXCEPT IN]

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
enzerch
Posts: 2
Joined: Mon Nov 03, 2014 3:49 am

[NOT FOUND] or [EXCEPT IN]

Post by enzerch »

I want to do a seach:

[*.mobi]

In all folders except in folder [\tm]

In some languages, the operator is NOT FOUND

In other languages, the operator is EXCEPT IN

Thank you
therube
Posts: 4955
Joined: Thu Sep 03, 2009 6:48 pm

Re: [NOT FOUND] or [EXCEPT IN]

Post by therube »

One way,
ext:mobi !\tm
.
enzerch
Posts: 2
Joined: Mon Nov 03, 2014 3:49 am

Re: [NOT FOUND] or [EXCEPT IN]

Post by enzerch »

Thank you for the quick reply

I miss something, however

None of these worked -- incorrectly returning zero files

*.mobi ext:*.mobi \tm

*.mobi ext:[*.mobi \tm]

*.mobi [ext:*.mobi \tm]

I want ALL the *.mobi files on the PC which ARE NOT in \tm

Thank you
NotNull
Posts: 5458
Joined: Wed May 24, 2017 9:22 pm

Re: [NOT FOUND] or [EXCEPT IN]

Post by NotNull »

Did you try @therube's suggestion?

Code: Select all

ext:mobi !\tm
Some explanation:
- ext:mobi will search for all fils that have extension mobi
- ! is Everything's syntax for NOT, so !\tm means not in folders where the name starts with tm
More information here


If the foldername you want to exclude is exactly "tm", you can search for:

Code: Select all

ext:mobi !\tm\
Post Reply