使用storeWithCallbacks:
方法时,文件会存储在应用Documents/SavedFiles
文件夹中。
有没有办法将目的地设置为另一个文件夹路径?
以下是我打电话的方式。 BoxFile 的localURL
是只读的。
- (void) downloadFile: (BoxFile *) boxFile
{
[Box registerObserverForDownloadQueue: (id)self];
[boxFile storeWithCallbacks:^(id <BoxOperationCallbacks> on)
{
on.after(^(BoxCallbackResponse response)
{
[Box removeObserverForDownloadQueue: (id)self];
// Proprietory code here and a call to update the folder listing.
});
}];
}
答案 0 :(得分:0)
目前无法将目的地设置为其他路径。