Hello
I was wondering if I can create a file which, upon running, opens/searches a predefined query, with various settings turned on/off as intended.
Example
"D:\Folder" endwith: file.txt
[WHOLE WORD ON] [PATH OFF]
Just to be clear, only the query is predefined, the results this query yields will be fetched live (when the file is run).
Run a file to search a predefined query
Re: Run a file to search a predefined query
Create a shortcut to Everything.exe with the following target:
"C:\Program Files\Everything\Everything.exe" -wholeword -nomatchpath -s """"D:\Folder""" endwith: file.txt"
""" = a single literal double quote.
-wholeword = enable whole words.
-nomatchpath = disable match path.
-s = specify the search.
Command Line Options
"C:\Program Files\Everything\Everything.exe" -wholeword -nomatchpath -s """"D:\Folder""" endwith: file.txt"
""" = a single literal double quote.
-wholeword = enable whole words.
-nomatchpath = disable match path.
-s = specify the search.
Command Line Options
-
- Posts: 49
- Joined: Wed Feb 12, 2020 5:03 am
Re: Run a file to search a predefined query
Thanks
Can this be detailed in further by defining the view of the results as Extra Large Icons and Document filter to be applied?
Can this be detailed in further by defining the view of the results as Extra Large Icons and Document filter to be applied?
Re: Run a file to search a predefined query
add:
-thumbnails -thumbnail-size 256 -filter "document"
"C:\Program Files\Everything\Everything.exe" -wholeword -nomatchpath -thumbnails -thumbnail-size 256 -filter "document" -s """"D:\Folder""" endwith: file.txt"
-thumbnails -thumbnail-size 256 -filter "document"
"C:\Program Files\Everything\Everything.exe" -wholeword -nomatchpath -thumbnails -thumbnail-size 256 -filter "document" -s """"D:\Folder""" endwith: file.txt"
-
- Posts: 49
- Joined: Wed Feb 12, 2020 5:03 am
Re: Run a file to search a predefined query
Ooof, this turned out to be yet another layer of syntax.
I see the documentation you shared in the previous reply isn't exhaustive then. Can it be updated to include every possible option?
Thanks for the quick save!
I see the documentation you shared in the previous reply isn't exhaustive then. Can it be updated to include every possible option?
Thanks for the quick save!
Re: Run a file to search a predefined query
All available command line options are listed in Command Line Options.
-wholeword
-nomatchpath
-thumbnails
-thumbnail-size
-filter
-s
-wholeword
-nomatchpath
-thumbnails
-thumbnail-size
-filter
-s
-
- Posts: 49
- Joined: Wed Feb 12, 2020 5:03 am
Re: Run a file to search a predefined query
Is there a way to use relative path with respect to where the shortcut is located and the location for which the search needs to be performed?
In my case the search needs to be performed in a directory which is one level up, relative to the location of the shortcut file.
In my case the search needs to be performed in a directory which is one level up, relative to the location of the shortcut file.
Re: Run a file to search a predefined query
Set the shortcut "Start in" and use relative paths with -path
For example:
start in: C:\Windows\system32
target: C:\Program Files\Everything\Everything.exe -path ".."
Search is set to:
"C:\Windows\"
-path
For example:
start in: C:\Windows\system32
target: C:\Program Files\Everything\Everything.exe -path ".."
Search is set to:
"C:\Windows\"
-path
-
- Posts: 49
- Joined: Wed Feb 12, 2020 5:03 am
Re: Run a file to search a predefined query
This isn't what I was expecting. It's like making it relative but not before using an absolute path to do that which defeats the original intent.
Is there perhaps a way to run a search in the folder containing the shortcut file itself using some meta tag or path information of the shortcut.
I'm basically trying to reduce the "dependency" of absolute path from the shortcut so that it becomes "portable" so to speak.
Is there perhaps a way to run a search in the folder containing the shortcut file itself using some meta tag or path information of the shortcut.
I'm basically trying to reduce the "dependency" of absolute path from the shortcut so that it becomes "portable" so to speak.
Re: Run a file to search a predefined query
Might be doable with a BAT file:
es: url protocol is another option. (.url file)
Unfortunately, you would need to write out absolute paths again..
Everything 1.5 will let you rewrite your searches with the Everything preprocessor.
Unfortunately, this doesn't help with portability and launching Everything from a shortcut.
Code: Select all
"C:\Program Files\Everything\Everything.exe" -path ".."
es: url protocol is another option. (.url file)
Unfortunately, you would need to write out absolute paths again..
Everything 1.5 will let you rewrite your searches with the Everything preprocessor.
Unfortunately, this doesn't help with portability and launching Everything from a shortcut.