How do i copy a file to multiple directories based on a variable
1 回表示 (過去 30 日間)
古いコメントを表示
for example.
I make multiple folders using a loop
nModels = 32;
for i = 1:nModels
mkdir (['core',int2str(i)]);
end
THEN i want to copy an application into each of these folders
for i = 1:nModels
copyfile MARCO64_500.exe 'core',int2str(i);
end
But this does not work.
0 件のコメント
回答 (1 件)
Walter Roberson
2020 年 8 月 20 日
for i = 1:nModels
copyfile('MARCO64_500.exe', ['core',int2str(i)]);
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で MATLAB Report Generator についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!