Change date format in a filter

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
sk2107
Posts: 325
Joined: Sun Aug 07, 2022 8:48 pm

Change date format in a filter

Post by sk2107 »

Hello,
I have this filter to filter duplicated files,

duplicates:size;name;datemodified

Today I faced a problem that some files have the same datemodified value while having a difference in the seconds part only (Date, Hour, Minute are identical).

So I need to have the filter to deal with the datemodified without including the seconds (HH:mm) instead of the standard (HH:mm:ss)

Thank you
void
Developer
Posts: 16748
Joined: Fri Oct 16, 2009 11:31 pm

Re: Change date format in a filter

Post by void »

Everything finds date modified duplicates with FILETIME precision (10nanoseconds)

To find duplicates using only HH:mm

add-column:a a:=formatfiletime($dm:,"YYYY-MM-DD HH:mm") dupe:size;name;a
sk2107
Posts: 325
Joined: Sun Aug 07, 2022 8:48 pm

Re: Change date format in a filter

Post by sk2107 »

Solved.

Thanks a lot.

Best Regards,
Post Reply