Dropbox API を使用していて、フォルダをダウンロードしようとしましたが、機能しません。任意のタイプのファイルをダウンロードできますが、フォルダー全体はダウンロードできません..ファイルをダウンロードするために使用したコードは次のとおりです
NSLog(@"called");
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *file = [NSString stringWithFormat:@"/%@",[metaArray objectAtIndex:indexPath.row]];
//NSString *file = @"/Photos";
NSString *path = [NSString stringWithFormat:@"%@/Downloaded Data/%@", [paths objectAtIndex:0],file];
//NSString *str = [NSString stringWithFormat:@"%@/Downloaded Data",path];
[self.restClient loadFile:file intoPath:path];
NSLog(@"Downloaded");
助けてください