How to copy files form one directory to another

36 vues (au cours des 30 derniers jours)
Mekala balaji
Mekala balaji le 5 Fév 2020
Commenté : Stephen23 le 5 Fév 2020
Hi,
I want to copy all files from one folder to another folder. How can I do this using arrayfunc ?
sorce_folder files:
s1.csv
s2.csv
s3.txt
and destination_folder:
d1.csv
d2.txt
d3.txt
I want to copy all the files in source_folder to destination_folder using arrayfun.
  1 commentaire
Stephen23
Stephen23 le 5 Fév 2020
Do the files have to be renamed as well as moved? If renaming is not required you could probably do this with one command.

Connectez-vous pour commenter.

Réponses (1)

Stijn Haenen
Stijn Haenen le 5 Fév 2020
cd('source_folder')
filenames=dir;
for i=3:length(filenames)
copyfile(filenames(i).name,'destination_folder')
end

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Tags

Produits


Version

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by