I am trying to set up a script using applescript to add document name to folder of images.
This is what I have so far. How would I have the document also include the file name?
Did you mean to attach a script?
Anyway, you can do this to copy the file name into another tag:
exiftool '-DESTINATION_TAG<SOME TEXT $filename SOME MORE TEXT OR MAYBE MORE TAGS WITH $TAG' FOLDER_NAME
- Phil
Thanks I will try this command
What I am looking to do is to to Add directory name and file name to the DocumentName Tag.
Example /Photo/Photo01/001A.tif
The command could be something like this:
exiftool '-documentname<$documentname $directory $filename' /Photo/Photo01/001A.tif
- Phil
I am using the command with AppleScript this
This is what I have Applescript doing
set images to "~/Desktop/Images/*"
do shell script "exiftool '-documentname<$documentname $directory $filename'" & images
I get an error
What is the error?