Conditional Searching involving Parent Folders?
-
zonetrooperex
- Posts: 76
- Joined: Tue Jun 10, 2014 4:06 pm
Conditional Searching involving Parent Folders?
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? 
Re: Conditional Searching involving Parent Folders?
With Everything 1.4:
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:
len:
parent-name:
-or-
Formulas
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:>=10len:
parent-name:
-or-
video: LEN($parent-name:)>=10Formulas
-
zonetrooperex
- Posts: 76
- Joined: Tue Jun 10, 2014 4:06 pm
Re: Conditional Searching involving Parent Folders?
thanks so much