Does anyone know of a good way to find (in the filesystem) every app with a given bundle identifier? NSWorkspace and Launch Services let you look for an app by bundle identifier, but only return a single result. I suspect Spotlight (NSMetadataQuery) might help, but I'm a bit unclear on its API, so I'm not sure if there's an appropriate key.

There's the command-line lsregister tool (inside LaunchServices.framework), which can be told to (re)register everything on the system and then dump a report on everything it knows about. Relying on that seems less than ideal, since it's undocumented and parsing its output could be a pain.

(Background: I'm building an app for game modding, and want to provide UI for quickly choosing from a short list of supported games rather than requiring the user to dig through the whole filesystem in an Open panel. However, I expect it's quite likely for a user to have multiple copies of a game installed: release and beta, extra copies for modding, etc.)

link|improve this question
A little more efficiently, lsregister can be told to (re)register just one thing, and then dump a report on everything it knows about. – JWWalker Jan 13 at 2:58
feedback

1 Answer

up vote 1 down vote accepted

You want the kMDItemCFBundleIdentifier Spotlight/metadata key.

pierre$39> mdfind "kMDItemCFBundleIdentifier == 'org.videolan.vlc'"
/Applications/VLC.app
/Applications/vlc-0.8.6c/VLC.app

From there it should just be a matter of making the right calls to the file metadata APIs (pick your poison, Carbon or Cocoa). Interestingly enough, this key is not very well documented: it is not in File Metadata Attributes Reference, though it is in MDItem Reference.

Once again, it goes to show that game modding tools raise use cases few other kind of apps raise, and that sometimes aren't very well served by Apple… </soapbox>

Addendum: once you have your list, in my opinion the best way to present it to the user would be to list the version (kMDItemVersion) of each item you found; you might also show the path, but the version is likely going to be the most useful thing to the user (after all, he likely keeps different instances in order to have specific versions).

link|improve this answer
This works pretty well, thanks! I am seeing one weird issue, though: when I search for "com.blizzard.WarcraftIII" using mdfind, it works fine, but when I use NSMetadataQuery, the results have a value for kMDItemDisplayName but no kMDItemPath (or kMDItemVersion for that matter). Other bundle IDs work fine (at least those I've tried; my app works with Blizzard games, and WoW and SC2 are the others I have handy for testing). I suspect this is a bug... – rickster Apr 13 at 0:16
@rickster You sure you can't get at least the path? (I have War3 but I don't have Xcode on this machine, so I can't check.) Indeed War3 doesn't seem to have a usable version, and even if it's a bug you've got to do something, so if you can get the path or URL (this item has got to be somewhere!), you can apply War3-specific processing to get interesting info, e.g. getting that non-standard BlizzardFileVersion key from Info.plist. BTW, you're a pro for having the reflex to get the display name. – Pierre Lebeaupin Apr 13 at 16:53
Yup, no path. Clearly NSMetadataQuery found the app and has the path; otherwise it wouldn't have been able to tell me the name... but the result is lacking the kMDItemPath key (and a few others, too). What's more this seems to be the case for any query that finds that app (i.e. searching for it by name won't get a path). Very weird. I'll be doing some looking to see if there are any other app bundles that exhibit this problem and likely asking another question here and/or filing a bug. – rickster Apr 13 at 21:53
@rickster OK, Apparently among the oddities of kMDItemPath (it can't be used in a query nor can be used to sort results) is the fact that even though it is not listed in the attributes array, you can nevertheless call valueForAttribute:(NSString*)kMDItemPath and get an answer (make sure to include CoreServices.h and add the CoreServices framework). Put this as a question so that I may give you a proper answer. – Pierre Lebeaupin Apr 17 at 21:13
Actually, that wasn't (quite) my problem, though I was further thrown off by it. I was testing the values for my keys of interest all at once instead of individually, by throwing them into a dictionary via dictionaryWithObjectsAndKeys:... and since I was putting version in before path, the nil version for War3 terminated the list. – rickster Apr 17 at 21:26
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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