Discussion related to "Everything" 1.5.
-
zonetrooperex
- Posts: 77
- Joined: Tue Jun 10, 2014 4:06 pm
Post
by zonetrooperex »
Unless I'm confused there seems to be an issue with case sensitivity (using
case:).
I'm running Version 1.5.0.1329a (x64).
If I run:
or
The results contain lowercase and non-matching files like:
- nvgamesr.dll
- UserGameStatsSchema_563560.bin
-
therube
- Posts: 5727
- Joined: Thu Sep 03, 2009 6:48 pm
Post
by therube »
In this case, case: needs to be "attached" to what you want to case - that is, in case you're looking for your wanted answer.
file: case:regex:"Games"
file: case:"Games"
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Post
by void »
Space in Everything means AND
Everything sees:
file: case: regex: "Games"
as:
file:<all-files-and-folders>
AND case:<all-files-and-folders>
AND regex:<all-files-and-folders>
AND "Games"
Use a :: prefix to enable search modifiers globally, for example:
file: ::case: ::regex: "^Games"
Search Modifiers
-
zonetrooperex
- Posts: 77
- Joined: Tue Jun 10, 2014 4:06 pm
Post
by zonetrooperex »
ah, that clears that up, thanks.