I have an iphone app with downloads option and iam using nsdocument directory path for downloading.but after the download how can i get to access the documents path in iphone.
//NSDownloadsDirectory = For Download folder
//NSDocumentDirectory = For Document folder
NSArray *pathArr = NSSearchPathForDirectoriesInDomains(NSDownloadsDirectory , NSUserDomainMask, YES); NSString *downloadsDir = [paths objectAtIndex:0];
Store the content to this path(you can create a folder in it too.). And also fetch the files stored in this folder, by enumerating to the files in this directory