gpt4 book ai didi

r - 在R中删除文件夹及其子文件夹中的文件

转载 作者:行者123 更新时间:2023-12-05 00:59:49 31 4
gpt4 key购买 nike

在 R 中,我试图删除文件夹及其子文件夹中的所有文件。但是,我想保持文件夹完好无损。最有效的方法是什么?

最佳答案

fold <- 'C:/some/path/here'

# get all files in the directories, recursively
f <- list.files(fold, include.dirs = F, full.names = T, recursive = T)
# remove the files
file.remove(f)

关于r - 在R中删除文件夹及其子文件夹中的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52280706/

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