gpt4 book ai didi

ios - AFNetworking downloadTaskWithRequest :progress:destination:completionHandler: not writing file to the path

转载 作者:技术小花猫 更新时间:2023-10-29 11:15:30 26 4
gpt4 key购买 nike

我正在尝试使用 AFNetworking (2.5.4) 下载文件。下载完成,调用完成处理程序,错误设置为 nil,一切似乎都很好,但目标文件不存在:

AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
NSString *fullPath = [valid path from my apps local manager]
NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:req progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
return [NSURL URLWithString:fullPath];
} completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
NSLog(@"Saved file to %@.", filePath);
*** [[NSFileManager defaultManager] fileExistsAtPath:filePath.absoluteString] returns NO here ***
}];
[cell.progressView setProgressWithDownloadProgressOfTask:downloadTask animated:YES];
[downloadTask resume];

文件路径是我的应用具有写入权限的常规路径:

/var/mobile/Containers/Data/Application/APP-GUID-REDACTED/Documents/FILE-NAME-REDACTED.docx

在 AFNetworking 之前,我使用了一种不同的方法,它可以很好地写入完全相同的路径。 HTTP 响应 header 完美显示所有内容(状态 200、正确的内容长度等),如果我 curl 下载 URL,它会毫无问题地下载文件。文件没有问题。

尽管没有错误,为什么我的目标文件没有写入完成处理程序?

更新:我也尝试过 AFHTTPSessionManager *manager = [[AFHTTPSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]]; 但它没有任何改变。我还尝试创建一个 NSProgress 指针并将其发送给 progress 参数,但无济于事。

最佳答案

使用 [NSURL fileURLWithPath:](不是 URLWithString)。

return [NSURL fileURLWithPath:fullPath];

关于ios - AFNetworking downloadTaskWithRequest :progress:destination:completionHandler: not writing file to the path,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30865372/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com