English 中文(简体)
使用dropbox api下载文件夹时出现问题
原标题:Problem in downloading Folder with dropbox api

我正在使用DropboxAPI并尝试下载文件夹,但它不起作用。我可以下载任何类型的文件,但不能下载整个文件夹。。这是我用来下载文件的代码

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");

请帮忙

问题回答

加载目录元数据,然后加载它引用的文件,请参阅发布以获取代码。

我和你面临着同样的问题,

我得到的错误日志是“本地文件夹不存在”,即使我已经自己创建了文件夹

我认为“DBRestClient”只是“单个文件”的下载程序?

“NOT”文件夹同步对象

现在我正在尝试使用同步API来同步目标文件夹

同步API地址。。。。

https://www.dropbox.com/developers/sync/start/ios


想想看。。。如果“DBRestClient”可以下载整个文件夹文件。。。。

同步API是无用的。。。。如果你使用like

[_restClient loadMetadata:@"/"];

干杯





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签