La herramienta de manejo EXIF exiv2
tiene una opción integrada para esto:
exiv2 -T rename image.jpg
establece la hora de la última modificación del archivo,, mtime
a la fecha almacenada en los metadatos EXIF.
Solicitó usar el tiempo de creación, pero eso no se usa en sistemas similares a Unix, y hay buenas razones para ello:
/unix/27297/why-doesnt-nix-keep-track -de-tiempo-creación-de-archivo
Estoy bastante seguro de que el momento en que llamas crear tiempo es realmente mtime
, no hay problema allí.
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.
Ver opción -t
para hacer lo contrario.