Reputation: 33068
I found the iPhone simulator at /Username/Library/Application Support/iPhone Simulator/4.2/ and in there I can see my apps within a cryptic directory name. One of my apps is storing a database and some cached files in the iPhone's "Personal" folder which I thought is the "Documents" folder in the directory of the simulator. But there's nothing in it. Nevertheless, I can read my files - where are they?
René
Upvotes: 0
Views: 531
Reputation: 8973
Under the hexadecimal directory name, there is YourApp.app and several folders: Documents, Library, tmp and anything else you created. If you are saving your files in the documents folder, it should be there. Make sure to check all the app folders, as your app might be in multiple folders over time.
There can be an unlikely problem, however, if your app isn't saving to the correct path. The iPhone will not let an app save outside of it's application folder. However, the simulator does not prevent that from happening. So you may have saved outside.
Upvotes: 1