我想知道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!")
}
我知道“存在”在这里是错误的。我只是想提供一个我期望的例子。
提前谢谢!