将包含 URL 的 NSString 转换为 POSIX 路径

发布于 2024-11-01 21:08:20 字数 491 浏览 5 评论 0原文

我正在努力将文件或文件夹拖放到 NSPathControl 上后检索文件夹或文件的 POSIX 路径。

我是初学者,但我能够以这种方式从代码中的控件(称为 Destination)获取值:

NSString *filepath;
filepath = [Destination stringValue];

这给了我类似的东西,

file://test/My%20New%20Project/

但我想将它放在 POSIX 中路径形式:

/test/My New Project
because I need to pass it to a NSTask running a command-line program.

关于如何将此 NSString 的内容从 URL 格式转换为 POSIX 路径,有什么建议吗?

I'm working on retrieving a POSIX path to a folder or file from an NSPathControl after dropping the file or folder onto it.

I'm a beginner, but I was able to get the value from the control (called Destination) in my code this way:

NSString *filepath;
filepath = [Destination stringValue];

This gives me something like

file://test/My%20New%20Project/

but I'd like to have it in the POSIX path form:

/test/My New Project

because I need to pass it to a NSTask running a command-line program.

Any suggestion about how to convert the content of this NSString from an URL format to a POSIX path?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩世 2024-11-08 21:08:20

使用 -URL 而不是 -stringValue。这将返回一个 NSURL 对象,表示路径控件显示的路径。然后,您可以将 -path 发送到 NSURL 对象,以获取其字符串表示形式,而无需 URL 方案/转义。例如:

NSURL *fileURL = [Destination URL];
NSString *filepath = [fileURL path];

NSString *filepath = [[Destination URL] path];

Use -URL instead of -stringValue. That will return an NSURL object representing the path displayed by the path control. You can then send -path to the NSURL object to obtain its string representation without the URL scheme/escaping. For instance:

NSURL *fileURL = [Destination URL];
NSString *filepath = [fileURL path];

or

NSString *filepath = [[Destination URL] path];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文