command line options and search syntax help

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
tytn
Posts: 13
Joined: Wed Dec 14, 2016 7:13 pm

command line options and search syntax help

Post by tytn »

Hi,
i need command line options and search syntax help.
How can i mask the ampersand sign and space in a folder name?
C:\TOOLs\Everything\Everything.exe -newwindow -search "<C:\FOLDER-1\ !C:\FOLDER-1\folder-a & folder-b\>" -filter "everything"

thx
void
Developer
Posts: 16679
Joined: Fri Oct 16, 2009 11:31 pm

Re: command line options and search syntax help

Post by void »

Code: Select all

C:\TOOLs\Everything\Everything.exe -newwindow -search """"C:\FOLDER-1\""" !"""C:\FOLDER-1\folder-a ^& folder-b\"""" -filter "everything"
""" = a single literal double quote (")
^& = a single literal &

Command line options



Everything 1.5:

Code: Select all

C:\TOOLs\Everything\Everything.exe -newwindow -filter "everything" -s* "C:\FOLDER-1\" !"C:\FOLDER-1\folder-a & folder-b\"
tytn
Posts: 13
Joined: Wed Dec 14, 2016 7:13 pm

Re: command line options and search syntax help

Post by tytn »

Super, Thank you!
Post Reply