limit dupe: result by dupecount

Discussion related to "Everything" 1.5.
Post Reply
bit
Posts: 44
Joined: Fri Feb 17, 2023 8:57 am

limit dupe: result by dupecount

Post by bit »

Now the dupe: will display group of dupes which count >=2

Code: Select all

.doc dupe:name dupecount:>1
How to only show groups of 3 dupe items inside?
Maybe a dupecount: search can help.

Code: Select all

.doc dupe:name dupecount:3

Code: Select all

.doc dupe:name dupecount:>3
void
Developer
Posts: 19870
Joined: Fri Oct 16, 2009 11:31 pm

Re: limit dupe: result by dupecount

Post by void »

I will consider a dupecount property / dupecount: search.

Thank you for the suggestion.
void
Developer
Posts: 19870
Joined: Fri Oct 16, 2009 11:31 pm

Re: limit dupe: result by dupecount

Post by void »

Everything 1.5.0.1384a improves finding duplicates.



Added a dupe-min: search function.

Find duplicates where the number of duplicates is greater than or equal to the specified minimum count.

Examples:
.doc dupe:name dupe-min:3




Added a dupe-max: search function.

Limit the number of duplicates to the specified count.

Examples:
dupe-max:30 dupe:size
Post Reply