给出以下代码:
x <- 1
save(x, file = "x")
file.remove("x")
file.remove()
命令成功删除了x文件。但是,它会将TRUE
返回给R控制台。我如何防止它这样做?
我尝试了类似file.remove("x", silent = TRUE)
的内容,但似乎我添加到函数中的任何内容都被解释为文件名,因为上面的内容会返回cannot remove file 'TRUE', reason 'No such file or directory'
。
答案 0 :(得分:7)
尝试使用invisible
x <- 1
save(x, file = "x")
invisible(file.remove("x"))