Objective-C 中基于波形符的路径
在 Objective-C 中,如何将基于波形符的路径名转换为完整路径名?也就是说,我想从 ~/sandbox
转换为 /Users/TheBobs/sandbox
。
In Objective-C, how do I go about converting tilde-based pathnames to full pathnames? That is, I'd like to convert from ~/sandbox
to /Users/TheBobs/sandbox
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSString 的
stringByExpandingTildeInPath:
方法。还有其他几种方法可以轻松 使用路径。
Use NSString's
stringByExpandingTildeInPath:
method.There are also several other methods that make it easy to work with paths.