my app is creating a CSV file out of a db. I want to browse and open the file to test. How do I access the iphone simulator's storage ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
All data of the Simulator is stored as local files on your Mac. The path for the user data of iOS apps in the Simulator is:
|
||||
|
|
|
You'll want to print out the location of where you store your file when you run the app in the simulator. You can use this code to get the location of the Library/Cache folder here:
Pass in a random file name like "test.txt":
This will print out the path to your app Library/Cache folder. |
|||
|
|
|
you need get the path of that file by using |
|||
|
|
|
pritn this path NSArray *directoryPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); |
|||
|
|