I cant seem to get nsdata to write to a file. Any ideas what i may be doing wrong. Thanks in advance.

NSString* filename = @"myfile.txt";

NSString *applicationDocumentsDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];

NSString *storePath = [applicationDocumentsDir stringByAppendingPathComponent:filename];    

if ([fileManager fileExistsAtPath:applicationDocumentsDir])
    NSLog(@"applicationDocumentsDir exists");   // verifies directory exist

NSData *data = [NSData dataWithContentsOfURL:URL];

if (data) {    
     NSString *content = [[NSString alloc]  initWithBytes:[data bytes]
                                                      length:[data length] encoding: NSUTF8StringEncoding];

    NSLog(@"%@", content); // verifies data was downloaded correctly

    NSError* error;
    [data writeToFile:storePath options:NSDataWritingAtomic error:&error];

    if(error != nil)
        NSLog(@"write error %@", error);
}

I keep getting the error

"The operation couldn’t be completed. No such file or directory"
link|improve this question

59% accept rate
2  
You should not check whether error is nil or not -- It could be initialized to anything (in your case). Check the result of writeToFile:options:error to determine success or failure. If it returns false (NO), only then should you read error. – Chaitanya Gupta Aug 29 '11 at 17:24
Thanks for the response. It returns NO. I removed the check to make the post as short as possible. – user346443 Aug 29 '11 at 17:45
What is the value of your storePath variable before you call writeToFile:options:error: ? Your code looks good, but the error you're getting makes me question where that path is pointing. – Sam Aug 29 '11 at 18:09
feedback

1 Answer

Try

NSString *storePath = [applicationDocumentsDir stringByAppendingPathComponent:@"myfile.txt"];

And

 if ([[NSFileManager defaultManager] fileExistsAtPath:storePath])
        NSLog(@"applicationDocumentsDir exists");   
link|improve this answer
So that worked, weird. What would a string be any different from a nsstring variable. – user346443 Aug 29 '11 at 18:14
feedback

Your Answer

 
or
required, but never shown

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