ort11
ort11

Reputation: 3349

iPhone / iPad IOS File Permissions / SandBox anyway to give permissions to another app?

Is there anyway to "break" the sandbox and give permissions to another running APP to allow for file access read / write / delete for the other APP? I did a bit of looking and have not found a way yet.

Upvotes: 0

Views: 1609

Answers (1)

Srikar Appalaraju
Srikar Appalaraju

Reputation: 73658

On a normal iOS device this is not possible.

On a jailbroken device, use NSFileManager. It gives you full access to the filesystem — just give it the paths you want to mess with. You can get the contents of a directory with its -contentsOfDirectoryAtPath:error: method and move files around with -moveItemAtPath:toPath:error:

For more - Apple iOS Runtime Environment

Upvotes: 1

Related Questions