将下载的Box文件存储到备用文件夹?

时间:2013-04-23 16:27:41

标签: ios objective-c box-api

使用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.
                  });
     }];
}

1 个答案:

答案 0 :(得分:0)

目前无法将目的地设置为其他路径。