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!