I'd like to be able to determine if a directory such as a '.app' is considered to be a package or bundle from Finder's point of view on the command line. I don't think this would be difficult to do with a small shell program, but I'd rather not re-invent the wheel if I don't have to.
|
|
You can get a list of all registered file type extensions, using this command:
or for Leopard
Every file extension there has flags. If the package flag is set, this is a package. E.g.
Compare this to a file that is no bundle
The only way to really get all bundles is by looking up in the LaunchService database (the one we dumped above). If you just go by whether it has a plist or not or whether the bundle bit is set or not, you might catch some or even many bundles, but you can't catch all of them. This is the database Finder uses to determine
and some more stuff. [EDIT: Added path for Leopard, thanks to Hagelin for the update] |
|||
|
|
|
My launch tool has a feature for this. For example:
You should be able to get what you want by checking to see if the first line of output ends in 'package'.
|
||
|
|
|
|
There ought to be a way to do it easily from the command line, because as an AppleScript user, I can do it using System Events. So if all else fails, you can execute the necessary AppleScript from the command line as follows:
result is
|
||
|
|
|
|
While you can identify some bundles based on the existens of './contents/Info.plist", it isn't required for all bundle types (e.g. documents and legacy bundles). Finder also identifies a directory as a bundle based on file extension (.app, .bundle, etc) or if the bundle bit is set. To check the bundle bit from the command line use:
In order to catch all cases I would check:
|
|||
|
|
|
|
A bundle should always have a file `./contents/Info.plist'. You can check for the existance of this in a directory, if so then it's a package/bundle. |
||||||
|
