如何在Linux中以编程方式获取给定相对路径的绝对路径?
如果是Windows,我们有_fullpath()
API。换句话说,我的意思是什么类似于_fullpath
Linux中Windows的API ?
回答:
如Paul所述,请使用[realpath()](http://man7.org/linux/man-
pages/man3/realpath.3.html)。但是请注意,由于Linux中的许多文件系统都支持硬链接,因此任何给定目录都可以具有许多不同的绝对路径。
以上是 如何在Linux中以编程方式获取给定相对路径的绝对路径? 的全部内容, 来源链接: utcz.com/qa/397686.html