If you are experiencing problems with "Everything", post here for assistance.
-
JTCGiants56
- Posts: 192
- Joined: Fri Nov 28, 2014 3:58 pm
Post
by JTCGiants56 »
I'm trying to create an OR search with folders and files. But the results only show the files but not the folder (__MACOSX).
Code: Select all
.ds_store|tn* .jpg|tnap* .jpg|__MACOSX
Any help is appreciated
-
void
- Developer
- Posts: 16672
- Joined: Fri Oct 16, 2009 11:31 pm
Post
by void »
OR has higher precedence, so Everything sees your search as:
(.ds_store|tn*) AND (.jpg|tnap*) AND (.jpg|__MACOSX)
Please try searching for:
.ds_store|<tn* .jpg>|<tnap* .jpg>|__MACOSX
< and > = grouping.
-
JTCGiants56
- Posts: 192
- Joined: Fri Nov 28, 2014 3:58 pm
Post
by JTCGiants56 »
Thanks for your quick reply, that did the trick!