Filenames with blanks

General discussion related to "Everything".
Post Reply
WMR
Posts: 1
Joined: Mon Mar 14, 2022 8:36 pm

Filenames with blanks

Post by WMR »

I am having trouble finding files with an internal blank (or blanks). Here are two screenshots, illustrating that Everything finds examples of a search for "colinas" but if I change to "las colinas", nada. Probably something trivial but I couldn't determine the problem. I've tried all permutations of capitalizations and inclusion/exclusion of the asterisk. Attached are two screenshots of successive searches.
Attachments
colinas_2.jpg
colinas_2.jpg (41.75 KiB) Viewed 1958 times
colinas_1.jpg
colinas_1.jpg (130.14 KiB) Viewed 1958 times
NotNull
Posts: 5298
Joined: Wed May 24, 2017 9:22 pm

Re: Filenames with blanks

Post by NotNull »

You likely have Match whole filename when using wildcards enabled.
(Menu:Tools > Options > General > Search)

That causes your colinas* to search for filemnames that start with colinas, followed by anything (or nothing)

A couple of options:

Code: Select all

las colinas
"las colinas"
las*colinas*
las?colinas*
startwith:"las colinas"
You can also uncheck Match whole filename when using wildcards


See also: Everything Search Syntax
void
Developer
Posts: 15501
Joined: Fri Oct 16, 2009 11:31 pm

Re: Filenames with blanks

Post by void »

Please escape spaces with double quotes ("):

"las colinas*"
Post Reply