Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing an application for iphone that will pick an image from photo library and save it at some other place.Now in my application i will be using this image later on from that place.

So can anybody suggest the folder where should i save this image so that the application works perfectly on device also.

share|improve this question

3 Answers

up vote 4 down vote accepted

You want to save it your applications Documents or Library folder. See the Files and Networking Programming Guide and specifically something like:

"Listing 6-1 Getting a file-system path to the application’s Documents/ directory:"

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
share|improve this answer
Can someone tell me, why noone using NSDocumentDirectory() ? instead of example above? – tt.Kilew May 28 '10 at 13:25
@tt.Kilew I can find no such function. Do you have documentation or an example? – Jakob Borg May 28 '10 at 15:52
Omg... I was so sure that' I've used this function to resolve Documents directory.... I' even look to documentation to check, and found it! No such function exist, sorry. My bad. Removed my answer. – tt.Kilew May 31 '10 at 14:22
& tt.kielw – anurag May 31 '10 at 15:56
this worked fine in my app – anurag May 31 '10 at 15:57

Have a look at this snippet http://snipplr.com/view/28080/save-image-example/, each application has a 'Documents' folder where you could save the image too.

share|improve this answer

You would save it to the applications document or library folder. If you want the user to have access to it on the iPad, put it in the documents folder. If only code will access it, put it in the library folder.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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