I'm funning the following code in an external app to do a search with everything.
Code: Select all
Shell EverythinPath & "Everything.exe -s" & " " & """" & SearchThis & """", 1
When I run the above code, is it possible to use one of the filters pre-defined in everything?
For example I have a filter to search only for cad files. Is it possible to change the search filter in everything and run the above code?
At present, after the search is done, User has to change the filter manually.
Note:
I know that I can add the filter to search query like the following. For some specific reasons, I don't want to use this method. I prefer to change the selected filter in Everything if possible.
Code: Select all
ext="ext:sldprt;slddrw;dxf;sldasm;pdf;tif;tiff;sldprt;slddrw;dxf;sldasm;"
Shell EverythinPath & "Everything.exe -s" & " " & """" & SearchThis & ext & """", 1