Download in documents directory or move file async - iOS

◇◆丶佛笑我妖孽 提交于 2020-07-17 09:51:26

问题


I am building an iOS app in which the user can download different files.
I am using an URLSessionDownloadTask and an URLSession to download a file asynchronously.
When the download is finished, the destination folder is by default, the tmp/ directory.
So, when the download ends, I need to move the temporary file to another directory.
For a picture or a song, this takes only 1 second maybe even less.
But when the file is a video for example, it can take up to 15 seconds.

The issue

To allow the user to still interact with the app, I would like to make this move asynchronous.
Each time I try to do that, the file manager throws an exception.

“CFNetworkDownload_xxxxxx.tmp” couldn’t be moved to “Downloads” because either the former doesn't exist, or the folder containing the latter doesn't exist.

What have I tried

I tried to put the call to the file manager in a background thread, it throws.

I tried to remove the destination file before calling the move method, to make sure that the file doesn't already exists.

I tried to make a call to the copy function, before removing the file from the tmp/ directory.

My code

The call to the file manager looks like that.

func simpleMove(from location: URL, to dest: URL) -> Bool {
    let fileManager = FileManager.default
    do {
        try fileManager.moveItem(at: location, to: dest)
        return true
    } catch {
        print("\(error.localizedDescription)")
        return false
    }
}

When I put that in a background thread, I do it like that.

DispatchQueue.global().async {
    if !simpleMove(from: location, to: dest) {
        //Failure
    }
}

Questions

How can I possibly move a really large file without affecting the UI?

It would be an even better solution to download the file directly in a permanent directory. How can I do that?

When I make the call to my simpleMove(from:to:) synchronously, it works perfectly.
So, why the error says that the destination directory doesn't exists? (or something like that, I'm not sure of the meaning of that error)

Thanks.

Note

The code above is written in Swift 3, but if you have an Objective-C or a Swift 2 answer,
feel free to share it as well!


回答1:


Amusingly, the correct answer to this was posted in another question, where it was not the correct answer.

The solution is covered in Apple's Documentation where they state:

location

A file URL for the temporary file. Because the file is temporary, you must either open the file for reading or move it to a permanent location in your app’s sandbox container directory before returning from this delegate method.

If you choose to open the file for reading, you should do the actual reading in another thread to avoid blocking the delegate queue.

You are probably calling simpleMove from the success handler for the DownloadTask. When you call simpleMove on a background thread, the success handler returns and your temp file is cleaned up before simpleMove is even called.

The solution is to do as Apple says and open the file for reading:

public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    do {
        let file: FileHandle = try FileHandle(forReadingFrom: location)
        
        DispatchQueue.global().async {
            let data = file.readDataToEndOfFile()
            FileManager().createFile(atPath: destination, contents: data, attributes: nil)
        }
    } catch {
        // Handle error
    }
}



回答2:


I came across the same issue but i solve it.

First check that the file is exist in that path because i got issue because of the path extension are different of location URL. i was trying to rename audio but path extension was different(eg. mp3 to m4a)

Also in case there is any other file already exists at destination path this issue arise.

So first try to check file exists at location where you by using

 let fileManager = FileManager.default

 if fileManager.fileExists(atPath: location.path) {
     do {
         try fileManager.moveItem(at: location, to: dest)
         return true
     } catch {
         print("\(error.localizedDescription)")
         return false
     }
 }

Hope this will help you



来源:https://stackoverflow.com/questions/39870431/download-in-documents-directory-or-move-file-async-ios

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!