I'm using quite a simple method of storing file names in a text file. For some reason when I initiate the writeToFile I get a crash:

pathString = [NSString stringWithFormat:@"New FileName - %@.png", identifier];  
NSString *currentContents = [NSString stringWithContentsOfFile:saveFilePath encoding:NSUTF8StringEncoding error:nil];
NSString *newContents = [NSString stringWithFormat:@"%@:::%@",currentContents, pathString];
NSData *newData = [newContents dataUsingEncoding:NSUTF8StringEncoding];
[newData writeToFile:saveFilePath options:NSDataWritingAtomic error:nil];

It reads the file, places it's contents into a variable called currentContents, then adds the new string to the file, and re-writes it. What's going wrong here.

Without the writeToFile line it works, with it, I get a crash.

Origin of saveFilePath

NSString *saveDocument = [NSString stringWithFormat:@"SavedFile.txt"];
NSString *docsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
saveFilePath = [docsDirectory stringByAppendingPathComponent:saveDocument];

An NSLog of saveFilePath reveals a correct path

link|improve this question

1  
You should use -[NSData writeToURL:options:error:] as Apple recommends the use of NSURL objects over NSString objects when dealing with file paths. By the way, you have a syntax error on the first line. – WTP'-- May 27 '11 at 14:54
Ah you're referring to the comma, that was done during my anonymising process, my original code has the comma there lol. Right, I'll try that NSURL instead of the NSString – Daniel Hanly May 27 '11 at 15:02
1  
error:nil should be error:NULL – onnoweb May 27 '11 at 15:03
Nope, error persists. – Daniel Hanly May 27 '11 at 15:04
@onnoweb Error persists on your suggestion too. – Daniel Hanly May 27 '11 at 15:05
show 7 more comments
feedback

2 Answers

I think your problem might actually be a missing null character ('\0') at the end of your NSData object. So you finally end up with messed up data. You might want to use -writeToFile:atomically:encoding:error: on your new string right away anyway.

link|improve this answer
feedback
up vote 0 down vote accepted

It turns out that the reason the file wasn't writing was because of an unallocated variable:

NSString *currentContents = [NSString stringWithContentsOfFile:saveFilePath encoding:NSUTF8StringEncoding error:nil];

should have been:

NSString *currentContents = [[NSString alloc] initWithContentsOfFile:saveFilePath encoding:NSUTF8StringEncoding error:nil];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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