Filter löschen
Filter löschen

How do i copy a file to multiple directories based on a variable

1 Ansicht (letzte 30 Tage)
Sean Phillips
Sean Phillips am 20 Aug. 2020
Beantwortet: Walter Roberson am 20 Aug. 2020
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.

Antworten (1)

Walter Roberson
Walter Roberson am 20 Aug. 2020
for i = 1:nModels
copyfile('MARCO64_500.exe', ['core',int2str(i)]);
end

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by