Since updating to OSX 10.7 Lion, Xcode tells me that AuthorizationExecuteWithPrivileges is deprecated.
Can anyone suggest a way my application can write to a directory it doesn't have permission for?
|
Since updating to Can anyone suggest a way my application can write to a directory it doesn't have permission for? |
||||
|
|
|
In fact, You can create a privileged helper tool as part of your application. You can use There's a little bit of hidden complexity, in that the app and the helper must each declare the signing identity of the other before I wrote an example application that uses |
|||||||
|
|
I know it sounds crazy, but this actually works:
I'm executing an Applescript from Objective C. The only disadvantage is that you cannot gain permanent root privileges with this. It will ask for the password each time you run this. |
|||||||||||
|
|
Based on a great find by user950473 I've implemented his/her discovery as a method; thought I'd share the code in case it's helpful.
Usage example:
It's very slightly hacky, but IMHO is a satisfactory solution. |
|||
|
|
|
AuthorizationExecuteWithPrivileges is indeed deprecated.
As of 10.6 there is the new API and it is recommended to install a helper tool that will perform the privileged operation. Apple provide a code sample that clearly demonstrate how to manage it. Make sure you check out their readme.txt since contrarily to other code sample there is more to do than just downloading the project and running it. From The SMJobBless example introduction
Source: Apple SMJobBless code sample |
|||
|
|