Advertisement
Guest User

Antares19

a guest
Oct 9th, 2009
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.38 KB | None | 0 0
  1. @echo ===
  2. @echo === Updating All *.JPG EXIF Dates to file CreationDate.  
  3. @echo === Press Ctrl-C to Cancel.
  4. @echo ===
  5. @prompt  $g
  6.  
  7. @for /f  "tokens=1,2,3,4,5,6,7,8 delims=." %%a in ('forfiles /m *.jpg -c "cmd /c echo @FDATE.@FTIME.@FILE"') do ^
  8. exiftool -overwrite_original -P -AllDates="%%c:%%b:%%a %%d" %%e.%%f
  9.  
  10. @prompt  $p$g
  11. @echo ===
  12. @echo === Done!
  13. @echo ===
  14. @pause
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement