I am using the following method to write image files out to the Applications/Documents folder:
- (void)saveImage:(UIImage *)image toFile:(NSString *)fileName { //get the data from the representation NSData * binaryImageData = UIImagePNGRepresentation(image); NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString * basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil; //write the data to a file [binaryImageData writeToFile:[basePath stringByAppendingPathComponent:fileName] atomically:YES]; } I thought I could just copy them to my computer, but that's not working out for me. Then, I decided to try to write the files to my hard drive. Nope. I guess that was a dumb idea, too.
I am processing bitmap images that I just want to capture somewhere (not on the device) where I can then retrieve them for testing. I've mucked with this for several hours and now it's getting late and I'm tired. Definitely ready for a little help.
Thank you in advance.

