swift – 获取完整路径或转换为完整路径

前端之家收集整理的这篇文章主要介绍了swift – 获取完整路径或转换为完整路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用时
let directoryEnumerator = FileManager().enumerator(at: ...

在Swift 3中,我从文件夹中获取所有文件,例如

"file:///Volumes/MacOS/fasttemp/Fotos/"

结果不包括前导路径(此处为“/ Volumes / MacOS”).所以我明白了

"file:///fasttemp/Fotos/2005/"

如何获取完整路径(直接来自枚举器)或转换它们.我想使用URL函数,而不是通过假设操作字符串函数.

如果“MacOS”是您当前启动盘的名称,则“/ Volumes / MacOS”是指向“/”的符号链接,因此“/ fasttemp / Fotos / 2005 /”和“/ Volumes / MacOS / fasttemp / Fotos /” “是同一文件绝对路径.

为了获得唯一的文件名表示,您可以查询
其规范路径的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"
原文链接:https://www.f2er.com/swift/320084.html

猜你在找的Swift相关文章