我正在使用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]];
答案 0 :(得分:2)
尝试记录documentsDirectoryURL
,每次启动应用时都会看到它不同。解决方案是在启动之间保存不是绝对URL,而是相对于NSLibraryDirectory目录的路径。我有同样的问题,我用两种方法解决了它:
// [self uploadFolder] returns a folder in NSLibraryDirectory
+ (NSString*)relativePathForURL:(NSURL*)url
{
NSURL *uploadFolderURL = [self uploadFolder];
if ([url.baseURL isEqual:uploadFolderURL])
{
return url.relativeString;
}
else if ([url.absoluteString hasPrefix:uploadFolderURL.absoluteString])
{
return [url.absoluteString substringFromIndex:uploadFolderURL.absoluteString.length];
}
return nil;
}
+ (NSURL*)urlForRelativePath:(NSString*)path
{
return [NSURL URLWithString:path relativeToURL:[self uploadFolder]];
}
应该按照以下方式使用它们:
下载文件并使用某个URL将其移至NSLibraryDirectory文件夹
savedURL
。
致电relativePath = [self relativePathForURL:savedURL]
并保存。
重新启动应用时,请致电savedURL = [self urlForRelativePath:relativePath]
savedURL
现在有效。
答案 1 :(得分:0)
继承人的解决方案;
- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location{
//location is the temporary "destination" which you returned (can be Temp directory) and it now contains the downloaded file. Now copy the file to a new location (eg documents directory) for future use.
BOOL fileCopied = [[[NSFileManager defaultManager] copyItemAtURL:location toURL:documentsDirectoryURLForSavingFileForFutureUe error:&error];
}