Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I find my app files under iPhone Simulator folder?

How can I easily access to the folder of an app I am working on.

enter image description here

There are too many application folders under iPhone Simulator directory, how can I access to any specific folder?

like image 894
onivi Avatar asked Oct 02 '13 05:10

onivi


People also ask

How do I access iOS simulator files?

# Open application folder in Finder First, copy the path to the app folder from Xcode console. Then open Finder, click on Go -> Go to Folder and paste the application directory path. You will now be able to browse all the files in your application folder.

Where is iOS simulator data stored?

The file system of the current device of the iOS simulator is available in ~/Library/Developer/CoreSimulator/Devices .

How do I find downloaded files in simulator?

You also may just go to the ~/Library/Developer/CoreSimulator/Devices/ folder in Finder ( Shift+Cmd+G ), and then click on the Date modified tab on the top of the folder menu. You'll get the most recently used simulator folder without UDID. After that, I navigate to data/Containers/Data/Application by hand.

Where do iOS simulator recordings go?

After finishing the recording, you can click the Stop button and the video preview will appear next to the simulator. By dismissing the video preview, the recording will be saved in the Desktop folder.


2 Answers

You can do this programatically:

NSLog(@"%@",[[NSBundle mainBundle] bundlePath]);
like image 184
Tarek Hallak Avatar answered Oct 27 '22 07:10

Tarek Hallak


I know of 2 great mac apps that solve your problem:

  1. SimPholders http://simpholders.com/
  2. Simulator Folders http://nimbleworks.co.uk/blog/simulator-folders/
like image 35
Thomas Keuleers Avatar answered Oct 27 '22 08:10

Thomas Keuleers