func downloadPdf() {
for k in self.resultAddressServer {
let fileURL = URL(string: k)
let sessionConfig = URLSessionConfiguration.background(withIdentifier: "com.Test")
let urlSession = URLSession(configuration: sessionConfig, delegate: self, delegateQueue: OperationQueue())
let request = URLRequest(url:fileURL!)
let downloadTask = urlSession.downloadTask(with: request)
self.tasksArray.append(downloadTask.taskIdentifier)
print(downloadTask.taskIdentifier)
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)
}
if let index = self.tasksArray.index(of: downloadTask.taskIdentifier) {
self.tasksArray.remove(at: index)
print(self.tasksArray.count)
}
DispatchQueue.main.async() {
if self.tasksArray.count == 0 {
//Do whatever you want, all downloads are completed
//the DispatchQueue is for what I use this for...maybe not needed in you case
}
}
}