I want to write a file on my iPhone app. My file is in my project’s folder, but when I try to reach it :
NSString *myFile = [[NSBundle mainBundle] pathForResource:@"myFile" ofType:@"txt"];
NSLog(@"%@",myFile);
I get the following path :
2012-06-13 17:36:56.398 MyFileApp[610:15203] /Users/Damian/Library/Application Support/iPhone Simulator/5.1/Applications/1FFD4436-DCCA-4280-9E47-F6474BEE0183/MyFileApp.app/myFile.txt
Why ?
Thanks for your advices
You ask:
It’s that path because that’s where the file is stored.
On the device it will be different.
Note that you can’t write a file to that folder anyway. You should perhaps instead write to your app’s documents folder: