renaming HEIC files with certain format
Hi all,
I'm trying to rename HEIC files using the the relative tag <ExifTool:DateTimeOriginal>
But I want to file name to be presented as 2005-03-12 18.46 (46)
instead of 2005_03_12 18_46_56
Is there a sulution for this?
I'm trying to rename HEIC files using the the relative tag <ExifTool:DateTimeOriginal>
But I want to file name to be presented as 2005-03-12 18.46 (46)
instead of 2005_03_12 18_46_56
Is there a sulution for this?
Replace: (\d{2})_(\d{2})_(\d{2})$
with: \1.(\2)
Use regular expressions
with: \1.(\2)
Use regular expressions
Reply to #2:
I'm not sure what you mean. I can't adjust the DateTimeOriginal -tag.
Can you write the full tag that I have to use?
I'm not sure what you mean. I can't adjust the DateTimeOriginal -tag.
Can you write the full tag that I have to use?
Reply to #3:
Use the Replace method as above to rename "2005_03_12 18_46_56" as "2005-03-12 18.46 (46)"
Use the Replace method as above to rename "2005_03_12 18_46_56" as "2005-03-12 18.46 (46)"