Как загрузить файл с URL с помощью Alamofire в пользовательскую папку - PullRequest
0 голосов
/ 04 июля 2019

enter image description here Я использую Alamofire для загрузки файла с URL, я получаю путь к файлу, но не могу отследить этот путь к файлу

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

Я хочу, чтобы этот файл был в пользовательской папке, если это возможно. Любая помощь будет оценена.

Вывод, что я получаю,

Файл: ///var/mobile/Containers/Data/Application/4CE55219-8244-4021-B113-1BB00B8F5B10/Documents/42535.jpg

1 Ответ

1 голос
/ 04 июля 2019

Добавить компонент пути

просто измените

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

до

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

EDIT

Вы можете загрузить это изображение с помощью этой функции:

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")!
    }

Просто используйте это как:

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