How to convert this var string to URL in Swift

前端 未结 5 1371
独厮守ぢ
独厮守ぢ 2021-01-30 16:05

I need url filepath be a URL (NSURL in old versions of Swift). I have this:

let paths = NSSearchPathForDirectoriesInDomains(
        .documentDirectory, .userDom         


        
5条回答
  •  情话喂你
    2021-01-30 16:16

    To Convert file path in String to NSURL, observe the following code

    var filePathUrl = NSURL.fileURLWithPath(path)
    

提交回复
热议问题