如何在 Linux 中以编程方式获取给定相对路径的绝对路径?
如何在 Linux 中以编程方式获取给定相对路径的绝对路径?
对于 Windows,我们有 _fullpath()
API。换句话说,我的意思是Linux中与Windows的_fullpath
类似的API是什么?
How to get the absolute path for a given relative path programmatically in Linux?
Incase of Windows we have the _fullpath()
API. In other words, I mean what is analogous API to _fullpath
of Windows in Linux?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
正如 Paul 提到的,使用
realpath().但请注意,由于 Linux 中的许多文件系统都支持硬链接,因此任何给定的目录都可以有一个不同绝对路径的数量。
As Paul mentioned, use
realpath()
. Please note though, that since many file systems in Linux support hard links, any given directory can have a number of different absolute paths.查看 realpath 函数。
Check out the realpath function.
尝试 realpath:
这在 BSD、OS X 等中也可用。
Try realpath:
This is also available in BSD, OS X, et al.
有来自
stdlib 的
realpath
。 hThere is the
realpath
fromstdlib.h
在 RedHat 5.3 上运行,realpath 不存在,但安装了 readlink。您可以在相对路径和符号链接上使用它,而且它将为您递归解析符号链接。因此,在我看来,这是比 realpath 更好的选择
Running on RedHat 5.3, realpath doesn't exist but readlink is installed. You can use it on relative paths and symlinks, plus it will resolve symlinks recursively for you. It's thus a better option that realpath in my opinion
这也是另一种有用的方法,例如“readlink -m $filename”
首先,它不需要目标文件存在就可以工作。
其次,它将处理符号链接并获得真正的路径。
The is also another useful way, like "readlink -m $filename"
First of all, it works without requirement for target file to exist.
Secondly, it will handle symlinks and get really real path.