Duplicate names without extesion

Discussion related to "Everything" 1.5.
Post Reply
harryray2
Posts: 1147
Joined: Sat Oct 15, 2016 9:56 am

Duplicate names without extesion

Post by harryray2 »

Is there a way to find duplicate file names excluding the extension..

ie:
testfile.exe
testfile.7z
testfile.zip

Also to secondary sort the results by date created
and another way to secondary sort by duplicate date created

Thanks.
therube
Posts: 5723
Joined: Thu Sep 03, 2009 6:48 pm

Re: Duplicate names without extesion

Post by therube »

basename:testfile
void
Developer
Posts: 19870
Joined: Fri Oct 16, 2009 11:31 pm

Re: Duplicate names without extesion

Post by void »

To find duplicate filenames excluding the extension:
dupe:stem


To sort by stem, then date created:
sort:stem;date-created


To find duplicated stems and date created:
dupe:stem;date-created
Post Reply