0

使用该storeWithCallbacks:方法时,文件存储在应用程序Documents/SavedFiles文件夹中。

有没有办法将目标设置为另一个文件夹路径?

以下是我拨打电话的方式。BoxFilelocalURL是只读的。

- (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.
                  });
     }];
}
4

1 回答 1

0

目前没有办法将目的地设置为另一条路径。

于 2013-04-23T23:09:53.193 回答