Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
634 views
in Technique[技术] by (71.8m points)

objective c - How to convert a classic HFS path into a POSIX path

I am reading old files that still use HFS style paths, such as VolumeName:Folder:File.

I need to convert them into POSIX paths.

I do not like to do string replacement as it is a bit tricky, nor do I want to invoke AppleScript or Shell operations for this task.

Is there a framework function to accomplish this? Deprecation is not an issue.

BTW, here's a solution for the inverse operation.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The “reverse” operation of CFURLCopyFileSystemPath() is CFURLCreateWithFileSystemPath(). Similarly as in the referenced Q&A, you have create the path style from the raw enumeration value since CFURLPathStyle.cfurlhfsPathStyle is deprecated and not available. Example:

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
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...