Hi there,
first i'd like to thank u for this great program. I had bough search gt before not knowing the existence of this great app. Now I'm so used to it. its pretty fast and very stable.
I've got one question. I had not searched for multiple file types in a certain folder before, now that i'm tring i'm not able to get it right.
search for: g:\files\*.avi|*.flv|*.mpg|*.mpeg|*.mp4
well obviously I'm doing something wrong here because its providing me results from all my drives.
I tried getting rid of asterisks * putting brakets between, but failed.. i would prefer not to fiddle around with regex.
how can I change it so that it only searches in my files folder?
Thanks!
search in folder for specific file types
Re: search in folder for specific file types
Boolean operations are applied in order from left to right.
The search:
will find the following (parenthesis show the search order):
To search for *.avi|*.flv|*.mpg|*.mpeg|*.mp4 in the g:\files folder only you will need to include g:\files in each OR term:
Custom search filters is planned for the next release of "Everything".
You will be able to save and select this search from a drop down list in the toolbar with custom search filters.
I am considering the option to add parenthesis support to boolean operations.
The search:
Code: Select all
g:\files\ *.avi|*.flv|*.mpg|*.mpeg|*.mp4
will find the following (parenthesis show the search order):
Code: Select all
((((g:\files\ AND *.avi) OR *.flv) OR *.mpg) OR *.mpeg) OR *.mp4
Code: Select all
g:\files\*.avi|g:\files\*.flv|g:\files\*.mpg|g:\files\*.mpeg|g:\files\*.mp4
Custom search filters is planned for the next release of "Everything".
You will be able to save and select this search from a drop down list in the toolbar with custom search filters.
I am considering the option to add parenthesis support to boolean operations.
Re: search in folder for specific file types
both additions would be awesome. some software has built-in parameters as u probabaly know already, like if u click on videos options it'll search only videos defined under options. same goes for documents, music etc.Custom search filters is planned for the next release of "Everything".
You will be able to save and select this search from a drop down list in the toolbar with custom search filters.
I am considering the option to add parenthesis support to boolean operations.
thanks, looking forward to the new version