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

link|improve this question

52% accept rate
How do you want Spotlight to interact with that? – Thilo Dec 16 '11 at 7:06
feedback

4 Answers

up vote 1 down vote accepted

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.

link|improve this answer
Thanks it seems to really be what I need. – AP. Dec 19 '11 at 6:54
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.

link|improve this answer
Thanks for your answer. Is there a way to get all the file having a specific attribute? – AP. Dec 16 '11 at 12:36
If you can get Spotlight to index the xattr entries, you should be able to use it to look for files with a particular xattr. If not, I think you have to walk the entire filesystem, and use getxattr to check each file for metadata. – Gordon Davisson Dec 16 '11 at 16:09
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.

link|improve this answer
There must be a tool to do this programmatically, too. – Thilo Dec 16 '11 at 7:10
I am assuming you would be able to do it from applescript and or automator. Had a quick look at automator and there are a load of prebuilt actions against folders and files so assume it is quite do-able – PurplePilot Dec 16 '11 at 10:58
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:

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<string>My Custom Comment</string>
</plist>

2) Convert the plist to the accepted binary format:

plutil -convert binary1 my_custom_comment.plist

3) Using xattr, set the kMDItemFinderComment metadata:

xattr -wx "com.apple.metadata:kMDItemFinderComment" "`xxd -ps my_custom_comment.plist`" MyFile

You can see with xattr -l MyFile that the comments are there and in the right binary format, but for some reason Finder doesn't show it (at least for me) in the Comments column.

Searching against the spotlight database with mdfind "My Custom Comment" will return all the files with this comment.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.