标签: r
可能重复: Check existence of directory and create if doesn't exist
这行代码
if(!file.exists("PLOTS")) dir.create("PLOTS")
相当于这行代码?
dir.create('PLOTS',showWarnings=FALSE)
是否存在任何一种工作而另一种不工作的情况?