Hi
I have searched, but I can't find a way to simply modify certain entries of a file's metadata.
If I use mdls <filename> I can see for instance:
How can I change the
to list "test" as author?
I have tried to do it in the application that created the pdf file, but I could not find such an option.
Thanks
I have searched, but I can't find a way to simply modify certain entries of a file's metadata.
If I use mdls <filename> I can see for instance:
Code:
kMDItemAlternateNames = (
"test.pdf"
)
kMDItemAuthors = (
"cookieme"
)
How can I change the
Code:
kMDItemAuthors = ("cookieme")
I have tried to do it in the application that created the pdf file, but I could not find such an option.
Thanks