In trying to find all folders with xxx in their names. I tried both \xxx and \ xxx in 636b
In both cases I get results with xxx in the file name and no xxx in the path. I was thinking that was not a match.
David, what are you thinking about that?
Possible bug with \xxx
Re: Possible bug with \xxx
The \ is treated literally.
This will also match files and folders in paths that have a folder that starts with xxx.
C:\abc\xxx123 matches.
C:\abc\12xxx3 does not match.
C:\xxx123\abc matches.
C:\12xxx3\abc does not match.
\ will match all files and folders except for the roots as they have no paths.
xxx will match only filenames, not the whole paths.
If you want to find xxx anywhere in the path, please enable match path from the search menu, or use the path: modifier:
You can also use wildcards to find xxx anywhere in the path:
Will only match files and folders that start with xxx.\xxx
This will also match files and folders in paths that have a folder that starts with xxx.
C:\abc\xxx123 matches.
C:\abc\12xxx3 does not match.
C:\xxx123\abc matches.
C:\12xxx3\abc does not match.
Is two separate terms: \ AND xxx.\ xxx
\ will match all files and folders except for the roots as they have no paths.
xxx will match only filenames, not the whole paths.
If you want to find xxx anywhere in the path, please enable match path from the search menu, or use the path: modifier:
Code: Select all
path:xxx
Code: Select all
*xxx*\*
Re: Possible bug with \xxx
Oh, I had not thought about files starting with xxx because they don't appear on the screen that way, but of course if you look at them as a complete path and name then it does indeed match......
I should have known better than to doubt Search Everything.
I should have known better than to doubt Search Everything.