使用R将多个文件夹中的多个文件复制到一个文件夹

时间:2015-12-17 22:00:25

标签: r file-manipulation

嘿我想问一下如何使用R语言将多个文件夹中的多个文件复制到一个文件夹

假设有三个文件夹:

  1. desktop / folder_A / task / sub_task /
  2. 桌面/ folder_B /任务/ sub_task /
  3. 桌面/ folder_C /任务/ sub_task /
  4. 在每个sub_task文件夹中,有多个文件。我想复制sub_task文件夹中的所有文件,并将它们粘贴到一个新文件夹中(让我们将这个新文件夹命名为“all_sub_task”)在桌面上。谁能告诉我如何使用循环或应用函数在R中执行此操作?提前致谢。

2 个答案:

答案 0 :(得分:5)

这是一个R解决方案。

# Manually enter the directories for the sub tasks
my_dirs <- c("desktop/folder_A/task/sub_task/", 
             "desktop/folder_B/task/sub_task/",
             "desktop/folder_C/task/sub_task/")

# Alternatively, if you want to programmatically find each of the sub_task dirs
my_dirs <- list.files("desktop", pattern = "sub_task", recursive = TRUE, include.dirs = TRUE)

# Grab all files from the directories using list.files in sapply
files <- sapply(my_dirs, list.files, full.names = TRUE)

# Your output directory to copy files to
new_dir <- "all_sub_task"
# Make sure the directory exists
dir.create(new_dir, recursive = TRUE)

# Copy the files
for(file in files) {
  # See ?file.copy for more options
  file.copy(file, new_dir)
}

编辑以编程方式列出sub_task目录。

答案 1 :(得分:2)

此代码应该有效。此函数占用一个目录 - 例如desktop/folder_A/task/sub_task/ - 并将其中的所有内容复制到第二个目录。当然,您可以使用循环或应用一次使用多个目录,因为第二个值是固定的sapply(froms, copyEverything, to)

copyEverything <- function(from, to){
  # We search all the files and directories
  files <- list.files(from, r = T)
  dirs  <- list.dirs(from, r = T, f = F)    


  # We create the required directories
  dir.create(to)
  sapply(paste(to, dirs, sep = '/'), dir.create)

  # And then we copy the files
  file.copy(paste(from, files, sep = '/'), paste(to, files, sep = '/'))
}