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
Change date format in a filter
Re: Change date format in a filter
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
To find duplicates using only HH:mm
add-column:a a:=formatfiletime($dm:,"YYYY-MM-DD HH:mm") dupe:size;name;a
Re: Change date format in a filter
Solved.
Thanks a lot.
Best Regards,
Thanks a lot.
Best Regards,