作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我有一个应用程序使用 NSURLSession
的 backgroundSessionConfiguration
实例来处理一些 NSURLSessionDownloadTask
任务。任务已正确创建并完成下载,但是在 URLSession:downloadTask:didFinishDownloadingToURL:
中,当我将下载的文件从 location
移动到磁盘上的永久位置时,我有时(阅读:经常)得到错误:
NSUnderlyingError=0x178247890 "The operation couldn’t be completed. No such file or directory"
就好像下载的文件在我有机会移动它之前已从临时目录 (../Library/Caches/com.apple.nsnetworkd/..) 中清除。
在所有其他因素相同的情况下,对同一个远程文件运行该操作将以两种方式运行,因此我无法识别任何会导致它有时工作的因素。
有没有办法确保这个文件在完成后能保留足够长的时间以将其移动到位?
编辑:我也经常在正常(非后台) session 中看到这种情况
最佳答案
退出此方法后临时文件会自动删除,您可以尝试将此返回文件保存为NSData
并直接保存到所需位置。
- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location {
// Create a NSFileManager instance
NSFileManager *fileManager = [[NSFileManager alloc] init];
// Get the documents directory URL
NSArray *documentURLs = [fileManager URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask];
NSURL *documentsDirectory = [documentURLs firstObject];
// Get the file name and create a destination URL
NSString *sendingFileName = [downloadTask.originalRequest.URL lastPathComponent];
NSURL *destinationUrl = [documentsDirectory URLByAppendingPathComponent:sendingFileName];
// Hold this file as an NSData and write it to the new location
NSData *fileData = [NSData dataWithContentsOfURL:location];
[fileData writeToURL:destinationUrl atomically:NO];
}
关于ios - 后台下载后无法移动文件 : "No such file",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20251432/
我是一名优秀的程序员,十分优秀!