检查R中系统路径中是否存在命令

时间:2018-10-03 22:33:00

标签: r command-line

我想知道R中是否有任何函数可以检查系统路径(Windows 基于Unix的操作系统)中是否存在命令。

要命令“ plink”,例如:

my_command <- plink

if(!exists(my_command)) {
    stop(paste(my_command," is not installed in your system path.
               Please do install it before running this function!")
}

我知道“存在”在这里是错误的。我只是想提供一个我期望的例子。

提前谢谢!

0 个答案:

没有答案