Searching files within a folder containing a specific word

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
n2R2
Posts: 2
Joined: Sun Feb 28, 2021 4:35 am

Searching files within a folder containing a specific word

Post by n2R2 »

Is there a way to only show files if their parent folder includes a specific word ?

I would like to show files (photos) if their parent folder includes the word : "done"
Then I could choose to show or hide via "!"

Thx
void
Developer
Posts: 16683
Joined: Fri Oct 16, 2009 11:31 pm

Re: Searching files within a folder containing a specific word

Post by void »

Everything 1.4:

To find files/folders directly in a folder with the name containing done, search for:
regex:done[^\\]*\\[^\\]*$

The following works if you want to find "done" in any parent:
*done*\*

If the folder name ends with "done" the following will work:
done\



Everything 1.5:

parentname:done

The following works if you want to find "done" in any parent:
pathpart:done
n2R2
Posts: 2
Joined: Sun Feb 28, 2021 4:35 am

Re: Searching files within a folder containing a specific word

Post by n2R2 »

WOW... AWESOME... THANK YOU!

You just solved a huge headache for me.
Post Reply