1

I want to create iPhone app that can play mp3 files that stored outside app bundle. The mp3 files that I want to access are stored in iPhone hard disk such as mp3 files that stored in iTunes_Control folder.

I want to retrieve these files from iTunes_Control folder in order to make a playlist and play them in my application without copy them into the application bundle. Do you have any idea how to solve this requirement?

Thank you very much.

user848437
  • 23
  • 5
  • possible duplicate of [Accessing users itunes library](http://stackoverflow.com/questions/5221549/accessing-users-itunes-library) – Black Frog Jul 24 '11 at 18:46

1 Answers1

6

Due to sandboxing you may only access files of your own app bundle. As for the mp3files, You can access mp3 you stored with iTunes. Check out this answer to find out how to do it. Accessing users iTunes Library without MPMediaPickerController

Community
  • 1
  • 1
Cyprian
  • 9,423
  • 4
  • 39
  • 73