1、删除指定类型的文件
dir() allfile = dir() ## 目录下的所有文件 allfile txtfile <- grep("*.txt", allfile) ## 查找txt文件,返回索引 txtfile file.remove(allfile[txtfile]) ## 删除txt文件 dir()
2、删除目录下所有文件
allfile <- dir() allfile target <- grep("*", allfile) target file.remove(allfile[target]) ## 删除所有文件 dir()
或者
allfile <- list.files() allfile file.remove(allfile[1:10]) ## 10可以更大 list.files()