快速从WebURL识别资源名称和扩展名

时间:2019-04-02 12:34:50

标签: ios swift

enter image description here在chrome网址下粘贴,然后chrome将为您提供带有扩展名的确切文件名。

https://www.videvo.net/download_new.php?hash=f654a8d8307038ae523769b502f35ab5&test_new_server=1

就像chrome知道名称和扩展名一样,我想迅速做到这一点。

谢谢你。

1 个答案:

答案 0 :(得分:2)

您可以使用downloadTask.response?.suggestedFilename下方的func

 func URLSession(session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingToURL location: NSURL) {
        print(downloadTask.response?.suggestedFilename as Any)
        print(downloadTask.response?.mimeType as Any)

    }