OS X File information question

J

Jonathan Waddilove

OS X (tiger) stores some useful information about files, including
"where from" and "spotlight commnets".

Is there an (easy) way to access these fields from Ruby?

Many thanks, Jonathan
 
G

Gabriele Marrone

OS X (tiger) stores some useful information about files, including
"where from" and "spotlight commnets".

Is there an (easy) way to access these fields from Ruby?

Give a look here: http://developer.apple.com/macosx/spotlight.html
Under the "Command-Line tool" section you can find something
interesting.

For example:

piastrella:~/Desktop$ mdls -name kMDItemFinderComment test.txt
test.txt -------------
kMDItemFinderComment = "This is a Spotlight comment."

You could wrap that tool in a Ruby class or something like that.
 
F

Frederick Cheung

It's a little more tricky writing to these: to write a finder comment
(now called spotlight comment, but implementation-wise it's the same)
you need to send an appleevent to the finder (there'a a code sample on
developer.apple.com for this).

To set the where_from, you need to use the undocumented api
MDItemSetAttribute, since in theory meta deta doesn't just get set at
random times, but when the importer for that file is run.
MDItemSetAttribute does however enable you to set metadata at will
(those changes would of course be blown away if the user chose to
reindex their files.

Fred
 
H

has

Frederick said:
It's a little more tricky writing to these: to write a finder comment
(now called spotlight comment, but implementation-wise it's the same)
you need to send an appleevent to the finder (there'a a code sample on
developer.apple.com for this).

You can do AEs from C but it's a bit tedious. Much easier with a
high-level bridge, e.g.:

require "appscript"

pth = "/path/to/some file or folder"
txt = "some comment"

AS.app("Finder").items[MacTypes::Alias.path(pth)].comment.set(txt)

Or, if you want to avoid dependencies and speed isn't an issue, you
could just use osascript to invoke an AppleScript via the command line.
Kludgy, but it'll do the job.

If portability is a must though, bear in mind that some OS X users run
third-party file managers in place of the Finder. (Not like the ol' OS
7-9 days when Finder availability was pretty well guaranteed.) I think
there's also some very crusty Carbon APIs for accessing Finder-related
data, though can't remember anything about them. Probably in the Carbon
File Manager or somewhere like that.


For querying files, the OP might also want to check out the Carbon or
Cocoa Spotlight APIs:


http://developer.apple.com/documentation/Carbon/Conceptual/SpotlightQuery/index.html

There's a 'RubySpotlight' example included with RubyCocoa 0.4.2 that
may be of help here.

has
 
J

Jonathan Waddilove

Gabriele, Fred

Thank you both for the help. I'll poke around in the documentation,
first task is to extract the settings in those fields (changing them
from Ruby is later in my game plan)

Many thanks for your help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top