Fritzables
Fritzables

Reputation: 383

Returning Drive Names?

I want to write code for an iOS17 Project that will be able to show me what Devices or Drives the App can physically see, like:

I am able to find a FileManager but I think this is for reading/writing files within Directories. Is this correct?

What protocol would I use to return this information as a List?

Upvotes: -4

Views: 54

Answers (1)

Knotbin
Knotbin

Reputation: 37

You are unable to access files on iOS due to there being no public API for the user to give apps permission to access those files and for apps to access device files. There would also be no 'Macintosh HD' folder on a iOS device because it is not a Mac.

You can request this feature here.

Upvotes: 1

Related Questions