I am trying to execute the command in CMD from example 13 (https://exiftool.org/filename.html#ex13) but unfortunately it does not work. What is the problem that it does not work?
exiftool -d %Y "-filename<$createdate/${model;}/${createdate#;DateFmt("%Y-%m-%d_%H%M%S")}.%e" test.jpg
The problem is quotes within quotes. Change the inner quotes around the date format string to single quotes.
- Phil
Thank you very much Phil, now everything works :D