I would like to me able to set (and get) a custom metadata attribute for any file.
What is the best way to do this?
Thanks
feedback
|
|
The OpenMeta framework is a de-facto third-party standard for adding metadata to OS X files using extended attributes. It is used by a number of third-party applications. | |||
|
feedback
|
|
This sounds like a job for extended attributes. You can get and set them from the command line with xattr, and from programs with getxattr and setxattr. However, extended attributes are (at least generally) not indexed by Spotlight. The only exception I know of to this is the "com.apple.metadata:kMDItemFinderComment" attribute, which should contain a binary-format plist with the actual indexable comment (see @PurplePilot's answer). This page claims spotlight will index other xattrs prefixed by "com.apple.metadata:", but I haven't gotten it to work. | |||||
feedback
|
|
Right click and Info, or cmd + i when the file is selected in the finder will open an information panel and you can add data at the top that will be referenced in Spotlight. Is called Spotlight Comments. You can do this with directories as well. I am not sure if it is the best way but it is the only way i know of doing it. | |||||
feedback
|
|
If you want to programmatically set the "Finder Comment" of a file (see @PurplePilot's answer), try this: 1) Create a regular xml plist file with your comments:
2) Convert the plist to the accepted binary format:
3) Using
You can see with Searching against the spotlight database with | ||||
|
feedback
|