Probably another obvious explanation I've missed, but what is the space character after the backslash here. This is from FAQ 2.7:
To search for files and folders in a specific location include a \ in your search string.
For example, here is how to search for all your avis in a downloads folder: downloads\ .avi
If I omit the space, making it
downloads\.avi
then there are no hits.
Should the instruction actually be '...include a backslash followed by a space...'?
--
Terry, East Grinstead, UK
Why this SPACE?
Re: Why this SPACE?
Basically, yes.Should the instruction actually be '...include a backslash followed by a space...'?
Your search is split into search terms that are separated by spaces or ORs (|).
downloads\ .avi is two terms, downloads\ and .avi
Match path is enabled when the search term contains a path separator.
The downloads\ search term will match the whole path, while the .avi search term does not.
The search terms must be separated by a space or OR operator (|).
Re: Why this SPACE?
Thanks, understood.
--
Terry, East Grinstead, UK
--
Terry, East Grinstead, UK