为了可重现:假设您在一个具有相同扩展名的目录中有 5 个(file1、file2、file3、file4、file5)文件。我想制作每个文件的 4 个副本,所以我将在该目录中有 20 个文件而不是 5 个文件。
程序:
1-Read all files
2- make 4 copies of file1 and put them in the directory as file1-1,file1-2,....
3- make 4 copies of file2 and put them in the directory as file2-1,file2-2,....
4- do the same for all files
读取文件列表:
smith <- list.files("C:\\New folder (3)", "*.envi", full.names = TRUE)
可以在R中做到这一点吗?