Thank you for your feedback.
Finding similar movies is not possible with Everything 1.4.
With Everything 1.5, you might be able to find duplicates depending on how well your files are named.
In Everything 1.5, please try the following search:
regex: == enable regular expressions
^ == match start of the filename.
( ... ) == capture match into regmatch1
.* == match the movie title
\(\d{4}\) == match the (year)
dupe:1 == show duplicated regmatch1 values. ( title + (year) )
Finding similar movies is not possible with Everything 1.4.
With Everything 1.5, you might be able to find duplicates depending on how well your files are named.
In Everything 1.5, please try the following search:
regex:^(.*\(\d{4}\)) dupe:1regex: == enable regular expressions
^ == match start of the filename.
( ... ) == capture match into regmatch1
.* == match the movie title
\(\d{4}\) == match the (year)
dupe:1 == show duplicated regmatch1 values. ( title + (year) )
Statistics: Posted by void — Sun Aug 24, 2025 4:45 am