Rename

重命名圖像以在名稱中包含創建日期

  • July 8, 2014

當我查看圖像的屬性時,我可以在“拍攝日期”中看到照片的拍攝日期。當我編輯圖像(專有程序)時,這些數據會失去。

如何在編輯之前重命名圖像文件以包含此日期(最好採用 ISO 格式以按名稱排序)。

你可以用exiftool做到這一點。從手冊頁:

  exiftool '-FileName<CreateDate' -d %Y%m%d_%H%M%S%%-c.%%e dir
       Rename all images in "dir" according to the "CreateDate" date and
       time, adding a copy number with leading '-' if the file already
       exists ("%-c"), and preserving the original file extension (%e).
       Note the extra '%' necessary to escape the filename codes (%c and
       %e) in the date format string.

範例格式應該為您提供 ISO 格式的文件名。包括確保您每天可以處理多張圖像的時間。

引用自:https://unix.stackexchange.com/questions/110579