我正在使用 NSURLSessionDownloadTask 下载文件。它被下载并保存。我可以正常显示数据。
不幸的是,我只有 iOS 模拟器要测试。如果我用 Xcode 上的停止按钮关闭应用程序会发生什么。然后我重新启动,该文件不再存在。
但是,如果我通过从应用程序中删除它来关闭它。通过单击 cmd + shift + H 两次运行列表。并通过点击应用程序重新启动它。在模拟器上。我找到文件。
BOOL found = [[NSFileManager defaultManager] fileExistsAtPath:path];
这是模拟器问题吗?我不应该在真实设备中担心它吗?
实际上,我只是设法在 iPhone 上进行了测试。完全相同的行为!任何解释。
NSURLSessionDownloadTask
我在发送一个返回要保存的目标的目标块上调用它:
- (NSURLSessionDownloadTask *)downloadTaskWithRequest:(NSURLRequest *)request
progress:(NSProgress * __autoreleasing *)progress
destination:(NSURL * (^)(NSURL *targetPath, NSURLResponse *response))destination
completionHandler:(void (^)(NSURLResponse *response, NSURL *filePath, NSError *error))completionHandler
目标块代码:
NSURL *documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSLibraryDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];
return [documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]];