I would like to rename my photos using exiftool. This is my desired folder structure:
YYYY/
MM/
EVENT/
YYYYMMDD_HHMMSS.ext
Here is an example script for what I would like to do:
echo 'Name of event?'
read event
exiftool -r '-FileName<CreateDate' -d '%Y/%m/%event/%Y%m%d_%H%M%S%%-c.%%le' .
Unfortunately, this does not work. How can I incorporate the name of the event in my folder structure?