I would like to copy files only from 1 root folder that has 100's of folders and subfolders. I do not want to copy the folders. I just want to copy all the files (*.iso, *.txt, *.docx, *.pdf etc.) there are in these folders to another folder.
My code:
setwd("/Users/RLearner/Desktop/RDMS")
if (file.exists(list.files(path=".",recursive=TRUE)))
file.copy(from=".", to="/Users/RLearner/Desktop/Test", recursive=TRUE)
But this code is copying the root folder as it is into my desired Test
folder. I just want to copy the files that these folders have?
?file.rename
help? – Spite