I am using Dropbox api and trying to download a folder, but it does not work. I can upload any type of file, but not the whole folder. Here is my code that I used to download the file
NSLog(@"called");
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *file = [NSString stringWithFormat:@"/%@",[metaArray objectAtIndex:indexPath.row]];
NSString *path = [NSString stringWithFormat:@"%@/Downloaded Data/%@", [paths objectAtIndex:0],file];
[self.restClient loadFile:file intoPath:path];
NSLog(@"Downloaded");
please, help
source
share