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!