Is there a shared pool of memory or a shared directory in iOS where applications can read and write files?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, each application is sandboxed. Applications can only read and write files/data within their own sandbox.
From the File System Programming Guide: File System Basics:
If you need to open files of a particular type in your application, you can register your application with the system letting it know what types of files you support. Files are shared with your application through an API, not a globally shared directory. Take a look at the Document Interaction Controllers for more information on how to do that.