I have a folder with a bunch of subfolders.
Some of the sub-folders have (+++) in their file-name.
I want to find just those folders.
Using name:"(+++)" or name:"+++" as a search term just returns every item in the folder, and all the sub-folders.
My knee-jerk response here would be "I just need to escape the special characters". However, name:"\(\+\+\+\)" and name:"\+\+\+" return nothing, and MSDN's "Advanced Query Syntax" doc page doesn't even mention how to escape a string (or that the + character is a special character, either).
How can I search for files or folders that have what are apparently special characters in their name?