如何将经典的HFS路径转换为POSIX路径

时间:2019-03-27 17:39:19

标签: objective-c swift macos cocoa core-foundation

我正在读取仍使用HFS样式路径的旧文件,例如VolumeName:Folder:File

我需要将它们转换为POSIX路径。

我不喜欢执行字符串替换,因为它有点棘手,也不想为此任务调用AppleScript或Shell操作。

是否有框架功能来完成此任务?弃用不是问题。

顺便说一句,这里是solution for the inverse operation

2 个答案:

答案 0 :(得分:1)

CFURLCopyFileSystemPath()的“反向”操作为CFURLCreateWithFileSystemPath()。与参考的“问答”中类似,由于已弃用CFURLPathStyle.cfurlhfsPathStyle并且不可用,因此您已从原始枚举值创建路径样式。示例:

let hfsPath = "Macintosh HD:Applications:Xcode.app"
if let url = CFURLCreateWithFileSystemPath(nil, hfsPath as CFString,
                                           CFURLPathStyle(rawValue: 1)!, true) as URL? {
    print(url.path) // /Applications/Xcode.app
}

答案 1 :(得分:1)

Obj-C和Swift中作为NSString / String类别/扩展名的解决方案。无法使用kCFURLHFSPathStyle样式的方式与链接问题中的方式相同。

Objective-C

@implementation NSString (POSIX_HFS)

    - (NSString *)POSIXPathFromHFSPath
    {
        NSString *posixPath = nil;
        CFURLRef fileURL = CFURLCreateWithFileSystemPath(kCFAllocatorDefault, (CFStringRef)self, 1, [self hasSuffix:@":"]); // kCFURLHFSPathStyle
        if (fileURL)    {
            posixPath = [(__bridge NSURL*)fileURL path];
            CFRelease(fileURL);
        }

        return posixPath;
    }

@end

快速

extension String {

    func posixPathFromHFSPath() -> String?
    {
        guard let fileURL = CFURLCreateWithFileSystemPath(kCFAllocatorDefault,
                                                          self as CFString?,
                                                          CFURLPathStyle(rawValue:1)!,
                                                          self.hasSuffix(":")) else { return nil }
        return (fileURL as URL).path
    }
}