我只想像下面的swift代码那样将fileURLWithPath转换为utf8十六进制格式。
import Cocoa
// this swift file name is aaa.swift
let arguments = CommandLine.arguments
let str = "\(arguments)"
let url = URL(fileURLWithPath: str)
print(url)
我将bash路径变量发送到aaa.swift文件。像下面 path =“ / Volumes / aaa / ccc.mov”
swift aaa.swift $path
然后在如下所示的终端上打印
%5B%22./aaa.swift%22,%20%22/Volumes/aaa/ccc.mov%22%5D -- file:///Volumes/aaa/
我想获得“ /Volumes/aaa/ccc.mov”这一部分.. 怎么做??