在我们将Alamofire下载到我们的应用程序之前,我正在创建一个测试项目。现在,我面临一个奇怪的问题,也许我不明白Alamofire下载或FileManager
如何运作。
我只是从URL下载3个文件,并希望将它们存储在文件系统中。之后,我想将它们用作WKWebView中的本地数据(尚未实现)。
这是我的ViewController:
import UIKit
class ViewController: UIViewController {
@IBAction func loadWebsite(_ sender: Any) {
NetworkService.shared.getFile(path: "webview.html", completion: {
NetworkService.shared.getFile(path: "css/style.css", completion: {
NetworkService.shared.getFile(path: "images/square.jpg", completion: {
self.fillInContent()
})
})
})
}
private func fillInContent() {
let documentURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
let fileUrl = documentURL.appendingPathComponent("webview.html")
if FileManager.default.fileExists(atPath: fileUrl.absoluteString) {
print("True")
} else {
print("no webview")
}
}
}
我知道在完成块中启动新请求时,加载资源的代码编写得不是很好,但它只是一个测试项目。
这是我的NetworkService单身人士:
import UIKit
import Alamofire
class NetworkService {
static let shared = NetworkService()
// Thread-safe
private init() {}
func getFile(path: String, completion: @escaping() -> Void) {
let destination: DownloadRequest.DownloadFileDestination = {_, _ in
let documentURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
let fileURL = documentURL.appendingPathComponent(path)
return (fileURL, [.removePreviousFile, .createIntermediateDirectories])
}
Alamofire.download("https://myurl.com/" + path, to: destination)
.responseData { response in
if let error = response.result.error {
print("Error: \(error.localizedDescription)")
}
completion()
}
}
}
当我打印出NetworkService中的文件URL或VC中的fillInContent()
时,它们是正确的。但是,fillInContent()
方法始终打印出“无webview”。所以该文件不存在。我希望它被其他完成块覆盖,但即使我在完成块中启动函数,fileExist()
也会返回false。即使我删除了对getFile()
的其他2个调用,我也不会在这里找到真正的文件。
当前行为:我始终“无网页浏览”。
预期行为:fillInContent()
方法打印出“True”。
非常感谢任何帮助或指导!
编辑:运行项目两次后,我还收到以下错误消息:'错误:文件“Documents”无法保存在文件夹“1E07C511-B5B3-4B5A-84E1- 8EF61F6B7340“因为已存在同名文件。”
答案 0 :(得分:0)
尝试使用此方法获取文档目录:
try? FileManager.default.url(for: .documentDirectory,
in: .userDomainMask,
appropriateFor: nil,
create: true)
并使用fileUrl.path
代替fileUrl.absoluteString