简体   繁体   中英

How to download a file from URL using Alamofire to a custom folder

在此处输入图片说明 I'm using Alamofire to a download file from url, I'm getting filepath, but I'm not able to track down that filepath

let mjString = "https://wallpaperstock.net/wallpapers/thumbs1/42535.jpg" 
let destination: DownloadRequest.DownloadFileDestination = { _, _ in
    let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]

    print("destinationURLForFile ***********    \(documentsURL)")
    let fileURL = documentsURL.appendingPathComponent("42535.jpg")
    return (fileURL, [.removePreviousFile, .createIntermediateDirectories])
}

Alamofire.download(mjString, to: destination).response { response in
    //            print(response)

    if response.error == nil, let imagePath = response.destinationURL?.path {
        let image = UIImage(contentsOfFile: imagePath)
        self.mjImage.image = image
        print("imagePath   =     \(imagePath)")
    }
}
file:///var/mobile/Containers/Data/Application/4CE55219-8244-4021-B113-1BB00B8F5B10/Documents/42535.jpg

I want that file to a custom folder, if it is possible. Any help would be appreciated.

The Output what i get is,

file:///var/mobile/Containers/Data/Application/4CE55219-8244-4021-B113-1BB00B8F5B10/Documents/42535.jpg

Append Path Component

just simply change

let fileURL = documentsURL.appendingPathComponent("42535.jpg")

to

let fileURL = documentsURL.appendingPathComponent("/yourFolder/42535.jpg")

EDIT

You can load this image with this function:

func loadImageFromDocumentDirectory(nameOfImage : String, folder: String) -> UIImage {
        let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
        let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
        let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
        if let dirPath = paths.first{
            let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent("\(folder)/\(nameOfImage)")
            if FileManager.default.fileExists(atPath: (imageURL.path)) {
                if let image    = UIImage(contentsOfFile: imageURL.path) {
                    return image
                }

            }
        }
        //Load default image if img doesnt exist. 
        return UIImage.init(named: "something.jpg")!
    }

Just simply use it like:

imageView.image = loadImageFromDocumentDirectory(nameOfImage : "42535.jpg", folder: "yourFolder")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM