使用时
let directoryEnumerator = FileManager().enumerator(at: ...
"file:///Volumes/MacOS/fasttemp/Fotos/"
结果不包括前导路径(此处为“/ Volumes / MacOS”).所以我明白了
"file:///fasttemp/Fotos/2005/"
如果“MacOS”是您当前启动盘的名称,则“/ Volumes / MacOS”是指向“/”的符号链接,因此“/ fasttemp / Fotos / 2005 /”和“/ Volumes / MacOS / fasttemp / Fotos /” “是同一文件的绝对路径.
原文链接:https://www.f2er.com/swift/320084.html为了获得唯一的文件名表示,您可以查询
其规范路径的URL.例:
let url = URL(fileURLWithPath: "/Volumes/MacOS/Applications/Utilities/") if let cp = (try? url.resourceValues(forKeys: [.canonicalPathKey]))?.canonicalPath { print(cp) } // Output: "/Applications/Utilities"
这需要macOS 10.12 / iOS 10或更高版本.在较旧的系统上,您可以
使用realpath()系统调用:
if let rp = url.withUnsafeFileSystemRepresentation ({ realpath($0,nil) }) { let fullUrl = URL(fileURLWithFileSystemRepresentation: rp,isDirectory: true,relativeTo: nil) free(rp) print(fullUrl.path) } // Output: "/Applications/Utilities"