我使用這段代碼將MP3文件下載到的文件目錄:Alamofire:下載到文件高速緩存的大型文件的文件夾
let destination = DownloadRequest.suggestedDownloadDestination(for: .documentDirectory)
Alamofire.download(theUrl!, to:destination).response { response in
// stuff
}.downloadProgress { progress in
// Stuff
}
文件下載罰款,但如果我關閉應用程序並重新啓動,下載從0重新開始。我想要的是文件被立即緩存和提取。 我對Alamofire的理解是,該文件被下載到一個臨時文件夾,然後移動到Documents文件夾,這是什麼導致緩存不發生?
非常感謝