0
votes
0answers
55 views

NSData writeToFile VS. NSFileManager createFileAtPath [duplicate]

I need to write some file into my /Documents folder. I have NSData representation of the file so, as I know, I can do this using NSData's method writeDataToFile:atomically: or with NSFileManager ...
0
votes
1answer
46 views

How to save uiimage in a directory on a given nsurl?

I have fetched UIImage from photos library in ipad using UIImagePickerController. Now I want to save that image in a directory that is associated with my app and contains already added images. I have ...
0
votes
1answer
55 views

How to save plist after downloading it

I'm downloading a .plist like this: dispatch_async(kBgQueue, ^{ NSError* error = nil; NSData* data = [NSData dataWithContentsOfURL:kFeedURL options:NSDataReadingUncached ...
0
votes
3answers
353 views

ios fileExistsAtPath failing for new file

I am writing a file, then adding the NSURLIsExcludedFromBackupKey attribute to the file. To do this I have the following two methods in my HPSFileHelper class: ...
0
votes
1answer
211 views

write NSData to desktop file

I am trying to write an NSData object to file, the code I am using is as follows.. The issue I am having is that it never creates the file.. // create file NSFileManager *filemgr; NSData ...
0
votes
1answer
163 views

Rename a file if file already exists

What is the best way in objective-c to rename a file if a file with a same name exists. Ideally, I would like to name untitled.png to untitled-1.png if a file named untitled.png already exists. I ...
0
votes
1answer
116 views

Storing files on simulator vs actual iOS device

Currently I am storing some mp3 files locally on a simulator using the following code to obtain a path.. manager = [NSFileManager defaultManager]; NSArray* paths = ...
3
votes
3answers
231 views

Difference between checking for a file's existence with NSData or NSFileManager

I'm trying to check if a file exists. If I use this: NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:filePath]]; if (data == NULL){ ... } I always get NULL. Than ...
0
votes
1answer
726 views

copyItemAtPath, moveItemAtPath, and createFileAtPath all seem to create a file that's unreadable

So I'm trying to figure out why I can't make a copy of my file that's readable. I've tried moveItemAtPath, copyItemAtPath, and createFileAtPath. Each time, reading the data from the original path ...
1
vote
1answer
1k views

Writing/reading NSData to file failing

I have an in-memory cache that I would like to write out to file on viewWillDisappear and read in back into memory on viewDidLoad. My code: - (void)viewDidLoad { [super viewDidLoad]; ...
0
votes
1answer
106 views

How to save data to a file using outputstreams or in any efficient way?

I have implemented in app purchase in my application,and the content i need to download from the store would be large.All these days i have been using dictionary to store the received data from the ...
1
vote
1answer
288 views

What am I doing wrong? NSFileManager woes

I'm currently building quite a large iPhone application. Bigger than I expected anyway. But that is beside the point, the overall idea of the application is to grab JSON from a web service, sort it ...
1
vote
1answer
394 views

Saving data - does work on Simulator, not on Device

I use NSData to persist an image in my application. I save the image like so (in my App Delegate): - (void)applicationWillTerminate:(UIApplication *)application { NSLog(@"Saving data"); ...
0
votes
1answer
4k views

iPhone: How to Write an Image to Disk in the App Directories

I am working on an iPhone project in which I need save camera images to disk and file but the code below fails: (**** -(void)imagePickerController:(UIImagePickerController *) picker ...
4
votes
1answer
1k views

Creating files in Objective-C

Which one of these 2 cases is faster in creating files? Case 1: ====== NSData *data = [Some data]; [data writeToFile:filePath atomically:YES]; Case 2: ======= NSFileManager *fileManager = ...