我在部署R
应用程序的服务器上有一些符号链接,我需要知道工作目录的逻辑(符号)路径:
16:18 $ ls -alh
total 8
drwxr-xr-x 4 user staff 136B Mar 16 16:18 .
drwxr-xr-x 40 user staff 1.3K Mar 16 16:17 ..
drwxr-xr-x 2 user staff 68B Mar 16 16:17 test1
lrwxr-xr-x 1 user staff 5B Mar 16 16:18 test3 -> test1
16:25 $ pwd -P
/physical/path/to/test/test1
16:25 $ pwd -L
/logical/path/to/test/test3
在使用getwd
函数的R中,它返回物理路径。在这种情况下,这将是/physical/path/to/test/test1
。我想获得该目录的符号(逻辑)路径:/logical/path/to/test/test3
。
是否可以使用R函数获取逻辑路径?
我知道可以选择使用system("pwd -L")
,但我想知道是否有R函数。
修改
我已经检查过,system("pwd -L")
也无效。