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
command line options and search syntax help
Re: command line options and search syntax help
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 &
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\"
Re: command line options and search syntax help
Super, Thank you!