I am trying to bulk move files of different kinds in R.
origindir <- c(\"c:/origindir\")
targetdir <- c(\"c/targetdir\")
filestocopy <- c(\"myfile.
As Joran and Chase have already pointed out in the comments, all you need to do is:
file.copy(from=filestocopy, to=targetdir,
overwrite = recursive, recursive = FALSE,
copy.mode = TRUE)
Then, if you're actually moving the files, remove the originals with:
file.remove(filestocopy)
Just expanding Chase's suggestion.
lapply(filestocopy, function(x) file.copy(paste (origindir, x , sep = "/"),
paste (targetdir,x, sep = "/"), recursive = FALSE, copy.mode = TRUE))