Re: Write to file Entitlement
Re: Write to file Entitlement
- Subject: Re: Write to file Entitlement
- From: Laurent Etiemble <email@hidden>
- Date: Tue, 01 Nov 2011 18:30:56 +0100
Hello,
In a sandboxed application, you can read/write files without the save
dialog by using the "File Access Temporary Exceptions" (cf.
http://developer.apple.com/library/mac/#documentation/Miscellaneous/Reference/EntitlementKeyReference/AppSandboxTemporaryExceptionEntitlements/AppSandboxTemporaryExceptionEntitlements.html).
These keys describe the folders in which you want to read/write files,
either relative to user home folder or absolute.
Here is an example to read any files inside the /Users folder:
<key>com.apple.security.temporary-exception.files.absolute-path.read-only</key>
<array>
<string>/Users/</string>
</array>
Here is an example to read and write any files inside the user home:
<key>com.apple.security.temporary-exception.files.home-relative-path.read-write</key>
<array>
<string>/</string>
</array>
Regards, Laurent Etiemble.
2011/10/31 James Merkel <email@hidden>
> Reading the sandboxing documents, it looks like in order to write to a
> file you need to use the save dialog.
> My app updates files without the save dialog.
> Will that be permitted in a sandboxed app ?
>
> Jim Merkel
> _______________________________________________
>
> Cocoa-dev mailing list (email@hidden)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
>
>
> This email sent to email@hidden
>
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden