Hi,
Is there any way to insert date modified as UTC time with time zone using advanced rename in the following format?
yyyyMMdd\THHmmssZ
Currently, Advanced Rename has an option to insert date modified but without UTC and time zone.
Many thanks for your consideration.
No way to insert date modified as UTC time with time zone in Advanced Rename...?
Re: No way to insert date modified as UTC time with time zone in Advanced Rename...?
Format the filetime with format-filetime-utc:
For example:
<formatfiletimeutc:$date-modified:,"yyyyMMdd\THHmmss\Z">
If you wish to keep the local time, use a timezone offset.
For example:
<formatfiletime:$date-modified:,"yyyyMMdd\THHmmss+0930">
ISO8601
For example:
<formatfiletimeutc:$date-modified:,"yyyyMMdd\THHmmss\Z">
If you wish to keep the local time, use a timezone offset.
For example:
<formatfiletime:$date-modified:,"yyyyMMdd\THHmmss+0930">
ISO8601
Re: No way to insert date modified as UTC time with time zone in Advanced Rename...?
void wrote: ↑Sat Apr 29, 2023 3:06 am Format the filetime with format-filetime-utc:
For example:
<formatfiletimeutc:$date-modified:,"yyyyMMdd\THHmmss\Z">
If you wish to keep the local time, use a timezone offset.
For example:
<formatfiletime:$date-modified:,"yyyyMMdd\THHmmss+0930">
ISO8601
Many thanks for the prompt solution void. It worked as expected.