creating folders in matlab
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How can I create folders by name 1,2,3,4 in a directory
0 Commenti
Risposte (1)
Walter Roberson
il 22 Gen 2016
targetdirectory = 'ThePlaceToPutThem';
for K = 1 : 4
foldername = fullfile(targetdirectory, sprintf('%d', K));
mkdir(foldername);
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Search Path in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!