A ferramenta de manipulação EXIF exiv2
possui uma opção integrada para isso:
exiv2 -T rename image.jpg
define a hora da última modificação do arquivo,, mtime
para a data armazenada nos metadados EXIF.
Você solicitou o uso do tempo de criação - mas isso não é usado em sistemas similares ao Unix - e há boas razões para isso:
https://unix.stackexchange.com/questions/27297/why-doesnt-nix-keep-track do tempo de criação do arquivo
Tenho certeza de que a hora que você chama de criar tempo é realmente mtime
- não há problema.
De man exiv2
:
NAME
exiv2 - Image metadata manipulation tool
SYNOPSIS
exiv2 [options] [action] file ...
DESCRIPTION
exiv2 is a program to read and write Exif, IPTC and XMP image metadata and image com‐
ments. The following image formats are supported:
[ ... ]
mv | rename
Rename files and/or set file timestamps according to the Exif create time‐
stamp. Uses the value of tag Exif.Photo.DateTimeOriginal or, if not
present, Exif.Image.DateTime to determine the timestamp. The filename for‐
mat can be set with -r fmt, timestamp options are -t and -T.
[ ... ]
-T Only set the file timestamp according to the Exif create timestamp, do not
rename the file (overrides -k). This option is only used with the 'rename'
action. Note: On Windows you may have to set the TZ environment variable for
this option to work correctly.
Veja a opção -t
para fazer o oposto.