CFBundleTypeExtensions for folders?
CFBundleTypeExtensions for folders?
- Subject: CFBundleTypeExtensions for folders?
- From: petite_abeille <email@hidden>
- Date: Mon, 31 Mar 2003 13:09:54 +0200
Hello,
CFBundleDocumentTypes allows one to define which 'document' an
application can open... which is very handy... but... what
CFBundleTypeExtensions does one use to open folders only?
Short of a better alternative, I have defined this entry in my
Info.plist:
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>*</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>*/*</string>
</array>
<key>CFBundleTypeName</key>
<string>folder</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>****</string>
</array>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
</dict>
Which basically says: open anything. Is there a more restrictive
CFBundleTypeExtensions, CFBundleTypeMIMETypes or CFBundleTypeOSTypes to
only handle folders?
Thanks.
Cheers,
PA.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.