Problem I stumbled upon today: I needed to filter out files with a comma
Simply entering these in the search bar inside the folder does not work. The solution however is pretty easy.
To search for files with special characters in the filenames you need to escape the characters.
Instead of searching
That's it!
Want to search for files containing
Want to search for files containing
Want to search for files containing
etc.
,
and ampersand &
.Simply entering these in the search bar inside the folder does not work. The solution however is pretty easy.
To search for files with special characters in the filenames you need to escape the characters.
Instead of searching
,
search for ~=","
. Precede the special character with ~=
and place it between double quotes ""
.That's it!
Want to search for files containing
&
? Use ~="&"
.Want to search for files containing
(
? Use ~="("
.Want to search for files containing
?
? Use ~="?"
.etc.
