OR and directory search
-
Xulidapa
- Posts: 2
- Joined: Sun May 05, 2013 12:38 pm
OR and directory search
The search string "\asd|\qwe yxc" with match path deactived (find only files named "yxc" in directories starting with "asd" or "qwe") worked before (i think in the stable version 1.2.1.371). In the new Beta it works differently. It finds files or directories starting with "asd" or "qwe yxc". Was this change on purpose and if yes, how can I replicate the old behaviour?
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: OR and directory search
AND has higher precedence than OR in 1.3.
This change was to follow the more common order of operations.
You will need to search for:
This change was to follow the more common order of operations.
You will need to search for:
Code: Select all
<\asd|\qwe> ycx-
Xulidapa
- Posts: 2
- Joined: Sun May 05, 2013 12:38 pm
Re: OR and directory search
Thanks very much.