Sort by count of files with similar file names

Discussion related to "Everything" 1.5 Alpha.
Post Reply
donotbugme
Posts: 21
Joined: Mon Oct 16, 2017 10:33 am

Sort by count of files with similar file names

Post by donotbugme »

Is there any way to sort by files with similar file names? something like similar sibling name count or name frequency?

This example, only last 5 character are different, i like "bbbbbbbbbbbbbb" files shows up at top with count "3" on the column, is it possible with current version?

Code: Select all


aaaaaaaaaaaaaaa 12345
aaaaaaaaaaaaaaa 22345
bbbbbbbbbbbbbb 24334
bbbbbbbbbbbbbb 23233
bbbbbbbbbbbbbb 23235

Thanks
void
Developer
Posts: 15675
Joined: Fri Oct 16, 2009 11:31 pm

Re: Sort by count of files with similar file names

Post by void »

Everything doesn't really have a way to find 'similar' filenames.

Find files where the first word is duplicated:

regex:^(.+)\b dupe:1


Consider:
regex:^(.+)\b\d+$ dupe:1
Post Reply