我有一个文件夹(my_files),里面有大约 1000 个文件夹。这 1000 个文件夹中的每一个都有 6 个 csv 文件。我想通过聚合每个目录的这 6 个 csv 来获得 1000 个 csv 文件。
我有以下代码:
files<-list.files("/Users/me/Desktop/my_files")
for (i in files)
{
//open each directory in "files"
//aggregate all csvs in the directory into one
//name of the aggregated csvs should be the name of the folder they were inside of
}
我正在尝试使用类似的东西:
for (i in files)
{
files2<-list.files("/Users/me/Desktop/my_files/"i)
}
列出 my_files 目录中的文件,但显然这是错误的语法。