How to copy some files from a folder and then paste them to a another folder using matlab code(script Writting)

4 ビュー (過去 30 日間)
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.

回答 (1 件)

Arthur Roué
Arthur Roué 2020 年 7 月 29 日
編集済み: Arthur Roué 2020 年 7 月 29 日
% Folder to create
myRep = 'C:\...'
% Make new folder
mkdir(myRep)
% Copy source to destination
copyfile(SourceFile, DestinationFile)

カテゴリ

Help Center および File ExchangeSearch Path についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by