Я загружаю несколько файлов с сервера, используя urlsession, делегат "didFinishDownloadingTo" запускается после каждой загрузки. Но я бы хотел, чтобы что-то сработало после завершения всех загрузок.
это делегат "didCompleteWithError", который я должен использовать?
как узнать, все ли файлы были загружены?
func downloadPdf() {
for k in self.resultAddressServer {
let fileURL = URL(string: k)
let sessionConfig = URLSessionConfiguration.default
let operationQueue = OperationQueue()
let urlSession = URLSession(configuration: sessionConfig, delegate: self, delegateQueue: operationQueue)
let request = URLRequest(url:fileURL!)
let downloadTask = urlSession.downloadTask(with: request)
downloadTask.resume()
}
}
func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
do {
let manager = FileManager.default
let destinationURL = try manager.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
.appendingPathComponent(downloadTask.originalRequest!.url!.lastPathComponent)
try? manager.removeItem(at: destinationURL)
try manager.moveItem(at: location, to: destinationURL)
print(destinationURL)
} catch {
print(error)
}
func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
if error != nil {
DispatchQueue.main.async() {
self.statusLabel.text = "Download failed"
}
} else {
DispatchQueue.main.async() {
self.statusLabel.text = "Download finished"
}
}