I hope can do this:
"abc folde*\"
to searching all thing who name contains "abc" and path contains "folde*"
Allow wildcard in path
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: Allow wildcard in path
Everything 1.5 will have support for "subpath" wildcard matching.
Thank you for the suggestion.
With subpath wildcard matching in Everything 1.5, folde*\ will match the path where any subpath starts with folde
For example:
c:\example\folder\file.txt
There will also be support for:
folde\\
which expands to:
folde*\**
but unlike folde*\, this will match anywhere in the path.
For example:
c:\example folder\file.txt
Thank you for the suggestion.
With subpath wildcard matching in Everything 1.5, folde*\ will match the path where any subpath starts with folde
For example:
c:\example\folder\file.txt
There will also be support for:
folde\\
which expands to:
folde*\**
but unlike folde*\, this will match anywhere in the path.
For example:
c:\example folder\file.txt
-
ahdung
- Posts: 20
- Joined: Sat Aug 24, 2019 3:51 am
Re: Allow wildcard in path
Great! Thank you very much!