Conditional Searching involving Parent Folders?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
zonetrooperex
Posts: 76
Joined: Tue Jun 10, 2014 4:06 pm

Conditional Searching involving Parent Folders?

Post by zonetrooperex »

Is it possible to search for video files where it is in a parent folder that has a folder name that is longer than 10 characters? :?:
void
Developer
Posts: 19839
Joined: Fri Oct 16, 2009 11:31 pm

Re: Conditional Searching involving Parent Folders?

Post by void »

With Everything 1.4:

video: regex:[^\\]{10,}\\[^\\]*$


video: = match video files.
regex: = enable regular expressions.
[^\\] = match any character except \
{10,} = match previous element 10 or more times.
\\ = match a single \
[^\\]* = match any character except \ zero or more times.
$ = match the end of the filename.



With Everything 1.5:

video: len:parent-name:>=10


len:
parent-name:

-or-

video: LEN($parent-name:)>=10


Formulas
zonetrooperex
Posts: 76
Joined: Tue Jun 10, 2014 4:06 pm

Re: Conditional Searching involving Parent Folders?

Post by zonetrooperex »

thanks so much
Post Reply