I am trying to search for folders that end with a particular text, I understand there is some syntax available for this at https://www.voidtools.com/support/everything/searching/
The thing is, it shows all files inside the folder ending with that text but not the folder itself. Other than that it works perfectly/accurately.Use \ to search for partial paths, for example, to find files and folders in a folder ending with documents, search for:
documents\
Use a space to combine searches, for example, to find files and folders containing the text order, located in the folder starting with work, search for:
\work order
I did find some success with endwith:<text>, I say some success because it does actually show folders (what i want) along with files, which i can easily restrict to display only folders using the folder: clause. All good till here.
The weird thing is, it displays files and folders that contain the <text> absolutely anywhere in their name, in the beginning, in the end and anywhere in between. So it's doing basically the same thing as simply searching for the <text> without the endwith: clause at all (I actually checked and the results with and without endwith: were exactly the same)!
The same is happening with startwith:<text>,
So to summarize, using
startwith:<text>
endwith:<text>
So my problem would be solved if the \work & documents\ method can start showing folders in the results.
OR
The startwith:<text> and endwith:<text> clauses would actually work as intended.
Thanks