Everything 1.5 allows doing a search that wasn't previously available in 1.4
Code: Select all
utils*\*.ps1
How could I rewrite the query to give the same results for multiple filetypes?
I.E:
I have a macro scr: which is a filter: ext:bat;cmd;ps1;py
How would I create the query:
Give me all scr: files that are direct descendants in folders whose name contains utils.
The above syntax doesn't apply to this situation..
P.S
I am aware that group expansion allows to do
Code: Select all
utils*\*.<ps1|bat>
Thanks