gpt4 book ai didi

r - 如何用R删除文件?

转载 作者:行者123 更新时间:2023-12-02 07:40:03 25 4
gpt4 key购买 nike

Possible Duplicate:
Automatically Delete Files/Folders in R

我想知道R中是否有一种方法可以检查文件是否在我的当前目录中,如果存在则程序将其删除?

我知道其他语言可以直接访问操作系统函数来完成此任务,但我有点怀疑 R 是否具有该功能。

最佳答案

怎么样:

#Define the file name that will be deleted
fn <- "foo.txt"
#Check its existence
if (file.exists(fn)) {
#Delete file if it exists
file.remove(fn)
}

据我所知,这在所有平台上都是永久性的、不可恢复的(即不是“移至回收站”)...

关于r - 如何用R删除文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14219887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com