简体   繁体   中英

URL(filePath: strPath) vs URL(fileURLWithPath: strPath)

let url = URL(filePath: pathString!)
let url2 = URL(fileURLWithPath: pathString!)

I tried both and they worked both.

What's the difference between the two ways creating such an URL-object?

String file paths are outmoded. Use file URLs. And not file URLs derived from a string file path; construct or obtain the URL legitimately. So the real answer is: don't use either of those methods.

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