Id like to "update" a local file from a server (save it to a directory). I tried EVERYTHING! NOTHING WORKS! That's my last attempt:
NSURL *url = [NSURL URLWithString:@"http://www.doothie.com/QAFrameworks/QAUpdater.php"];
NSData *urlData = [NSData dataWithContentsOfURL:url];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"general.qa"];
NSString *str = [[NSString alloc] initWithData:urlData encoding:NSUTF8StringEncoding];
[str writeToFile:filePath atomically:TRUE encoding:NSUTF8StringEncoding error:NULL];
filePathis correct (tried to NSLog it?) and have you tried to delete the old file first to see if that gets the new version saved correctly? – Monolo Dec 1 '11 at 18:02filePathwould be not be localized. 2) it is a relative path name, which I don't thinkNSSearchPathForDirectoriesInDomainsreturns. 3) have you tried to pass in a real error object to see if you get any error messages? – Monolo Dec 1 '11 at 18:30