Re: Downloading with NSData and NSFileManager

2008-10-07 Thread Mike Abdullah
If you want to literally just download a file, the simple option is to use NSURLDownload. It's fairly straightforward, an asynchronous. On 6 Oct 2008, at 18:04, Mark Thomas wrote: Hi All, I was looking at downloading some files, and started to look at NSFileManager to create the file, and th

Re: Downloading with NSData and NSFileManager

2008-10-06 Thread Nick Zitzmann
On Oct 6, 2008, at 11:04 AM, Mark Thomas wrote: I was looking at downloading some files, and started to look at NSFileManager to create the file, and then saw I could use NSData to load the data via a NSURL, so this look's pretty straight forward and very small code for downloading files.

Downloading with NSData and NSFileManager

2008-10-06 Thread Mark Thomas
Hi All, I was looking at downloading some files, and started to look at NSFileManager to create the file, and then saw I could use NSData to load the data via a NSURL, so this look's pretty straight forward and very small code for downloading files. So I'm wondering what is the downside of usi