i want to write a string in a file "file.txt": this file in my project (for Iphone) is inside Resources; I try to write a string in this file but it don't work, I show my code.

 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath =  [documentsDirectory stringByAppendingPathComponent:@"file.txt"];
NSError *error;
[outputString writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];

I want write in this file with simulator xcode, not with device

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

I'm not sure if you are able to write in your bundle, but you can in your Documents directory instead as your code does. Why don't you try this?

Use the same code and you will find your file in:

/Users/YOURUSER/Library/Application Support/iPhone Simulator/IOSVERSION/Applications/APPID/Documents/file.txt

link|improve this answer
ah ok, it work, thanks.... – blackguardian Apr 8 '11 at 9:47
feedback

The Documents directory for your app in the simulator is located at;

~/Library/Application Support/iPhone Simulator/YOUR-IOS-VERSION/Applications/UNIQUE-KEY-FOR-YOUR-APP/Documents
link|improve this answer
feedback

With the example code that you have here it will not write into your Resources folder, but into the Documents folder of the Simulator, which is actually where you should write on device, but as you mention that you only want to do this on the simulator, you could use

filePath = [[NSBundle mainBundle] bundlePath] stringByAppendingPathComnponent:@"Resources"]

But, don't do this in a shipping app, it will fail.

link|improve this answer
interface type cannot be statically allocated....why? – blackguardian Apr 8 '11 at 9:50
I'm not sure what you are asking here - what interface type? – Scott Little Apr 8 '11 at 10:40
it's all ok, I didn't write "*" before filePath – blackguardian Apr 8 '11 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.