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?
You can do this programatically:
NSLog(@"%@",[[NSBundle mainBundle] bundlePath]);
I know of 2 great mac apps that solve your problem:
- SimPholders http://simpholders.com/
- Simulator Folders http://nimbleworks.co.uk/blog/simulator-folders/
You can use OpenSim as an alternate tool of above mentioned.
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