How to copy some files from a folder and then paste them to a another folder using matlab code(script Writting)
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am doing some simulation, it give me output files. In those files, I want to copy some files and paste or move them to a new folder. This code has to creat a new folder every time i run, how should i write a matlab code for this.
0 commentaires
Réponses (1)
Arthur Roué
le 29 Juil 2020
Modifié(e) : Arthur Roué
le 29 Juil 2020
% Folder to create
myRep = 'C:\...'
% Make new folder
mkdir(myRep)
% Copy source to destination
copyfile(SourceFile, DestinationFile)
0 commentaires
Voir également
Catégories
En savoir plus sur Search Path dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!