0

我还没有找到正确的方法来做到这一点。我可以重新创建文件并使用新名称上传它,然后我会删除旧名称的文件,但这似乎不是最好的方法。

4

1 回答 1

1

你可以做这样的事情

NSString *fromPath = <old_path>
NSString *toPath   = <new_path>
BRestClient *dbClient = [[DBRestClient alloc] initWithSession:[DBSession sharedSession]];
[dbClient moveFrom:fromPath toPath:toPath];
于 2013-02-11T21:26:17.540 回答