Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access files of one Application from other application in ios

Can we have shared storage in iPhone which is accessible to other ios apps?

I am working on one ios app which downloads updated files from server. And there will be some other application which uses those files. So for that I want to save downloaded files on particular location. So that I can access those files from other application.

So the flow will be like this,

Application1, which will download files from server.

And

Application2 or Application3..... will use those files.

Do we have such type of shared location in iOS. Is it possible in iOS?

Thank you in advance.

like image 931
user1988 Avatar asked Sep 06 '12 12:09

user1988


3 Answers

No. Its not possible as your application will be in sandbox mode.

like image 166
Janak Nirmal Avatar answered Sep 23 '22 05:09

Janak Nirmal


All applications are sandboxed as the other answers have said.

However, if you own both apps, or you know the developer of the other app, you could always use some sort of cloud storage, but that may defeat the point of you asking this question

like image 41
Conor Taylor Avatar answered Sep 26 '22 05:09

Conor Taylor


You can't "share" files between in iOS, because all apps are sandboxed and can't access other files besides its own files with the public APIs.

like image 21
Natan R. Avatar answered Sep 26 '22 05:09

Natan R.