A ferramenta de manipulação EXIF exiv2
tem uma opção incorporada 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ê pediu para usar o tempo de criação - mas isso não é usado em sistemas semelhantes ao Unix - e há boas razões para isso: link
Tenho certeza de que o tempo que você chama de tempo de criação é, na verdade, mtime
- não tem 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.