Arpit Raniwala
Arpit Raniwala

Reputation: 235

access text files stored on ios device

I am thinking to make an app which would get a list of all text and pdf files stored on an iDevice, like iphones, ipods or ipads. The user will have an option for dictation of the selected file. Is it possible to get access to all such files stored in a device???

Upvotes: 0

Views: 715

Answers (2)

stan0
stan0

Reputation: 11807

It's not possible to list all (text and pdf) files stored on the device. The best you could do is to register your app as one that opens that type of files so that your app can be used to open a file from another app.

You might want to take a look at the File System Programming Guide.

Upvotes: 2

rckoenes
rckoenes

Reputation: 69469

No, files are stored per app and only accessible by the app that create and maintains the file.

You could tell the system that your app opens specific types of files.

Upvotes: 1

Related Questions