user1988
user1988

Reputation: 811

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.

Upvotes: 9

Views: 8081

Answers (5)

Tony
Tony

Reputation: 2754

Maybe you could combine the functionality of all the separate apps into a single app. Have each one be a module accessible from a master menu.

Upvotes: 2

Vikas S Singh
Vikas S Singh

Reputation: 1766

Read Apple Doc File System Basics

Upvotes: 2

Conor Taylor
Conor Taylor

Reputation: 3108

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

Upvotes: 3

Janak Nirmal
Janak Nirmal

Reputation: 22726

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

Upvotes: 6

Natan R.
Natan R.

Reputation: 5181

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.

Upvotes: 3

Related Questions