Hello,
in Advanced Move to folder
Old Format: DSC00136.jpg
New Format: F#$date-taken:#DSC00136.jpg
New Filenames:F#128796916660000000#DSC00136.jpg
How can I make it F#2009-02-21_15-07-46#DSC00136.jpg
where 2009-02-21 15:07:46 is the actual Date taken
Thanks
images Date Taken Format in copy / move
-
void
- Developer
- Posts: 19902
- Joined: Fri Oct 16, 2009 11:31 pm
Re: images Date Taken Format in copy / move
Please try the following new format:
F#<FORMATFILETIME:$date-taken:,"yyyy-MM-dd_HH-mm-ss">#DSC00136.jpg
FORMATFILETIME
Date formatting
F#<FORMATFILETIME:$date-taken:,"yyyy-MM-dd_HH-mm-ss">#DSC00136.jpg
FORMATFILETIME
Date formatting
-
sk2107
- Posts: 385
- Joined: Sun Aug 07, 2022 8:48 pm
Re: images Date Taken Format in copy / move
Thanks a lot.
Best Regards
Best Regards
-
sk2107
- Posts: 385
- Joined: Sun Aug 07, 2022 8:48 pm
Re: images Date Taken Format in copy / move
Is there a way to filter if the date modified is not equal to the date taken?
Best Regards
Best Regards
-
sk2107
- Posts: 385
- Joined: Sun Aug 07, 2022 8:48 pm
Re: images Date Taken Format in copy / move
I think this datetaken:!=datemodified: will do it if I am not wrong.
Regards
Regards
-
void
- Developer
- Posts: 19902
- Joined: Fri Oct 16, 2009 11:31 pm
Re: images Date Taken Format in copy / move
The following will show files where the date taken and date modified as FILETIMEs differ:
datetaken:!=datemodified:
To compare as seconds:
$datetaken:/10000000!=$datemodified:/10000000
datetaken:!=datemodified:
To compare as seconds:
$datetaken:/10000000!=$datemodified:/10000000
-
sk2107
- Posts: 385
- Joined: Sun Aug 07, 2022 8:48 pm
Re: images Date Taken Format in copy / move
Thanks a lot and best regards