如何在不遵循符号链接的情况下获取文件的绝对路径。
例如
/path/to/some/file
/path/to/some/link -> /path/to/some/file
/path/to/some/directory/
我当前的工作目录是/path/to/some/directory/
,我去realpath('../link)
它返回/path/to/some/file
。
(我知道realpath
应该这样工作)
是否有一个函数而不是realpath
那个会返回/path/to/some/link