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

There are too many application folders under iPhone Simulator directory, how can I access to any specific folder?
回答1:
You can do this programatically:
NSLog(@"%@",[[NSBundle mainBundle] bundlePath]);
回答2:
I know of 2 great mac apps that solve your problem:
- SimPholders http://simpholders.com/
- Simulator Folders http://nimbleworks.co.uk/blog/simulator-folders/
回答3:
You can use OpenSim as an alternate tool of above mentioned.
回答4:
Here you can see you app name and then you can find it easily..So try to implement this.
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSLog(@"Path %@",path);
来源:https://stackoverflow.com/questions/19130439/how-can-i-find-my-app-files-under-iphone-simulator-folder