我使用Dropbox API並嘗試下載文件夾,但它不工作。我可以下載任何類型的文件,但不是整個文件夾..Here是我的代碼,我用來下載文件使用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");
請幫助
檢查此鏈接,但困惑,因爲我想下載folder.I顯示元數據在表視圖。這是顯示文件和文件夾從@「/」root.I選擇要下載的文件,但不適用於文件夾。 :( – iProgrammer 2011-05-25 10:30:31