Create a new folder using matlab.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ck
le 26 Juin 2016
Réponse apportée : Image Analyst
le 26 Juin 2016
How can I create a new folder to save the outputs in matlab? Is there any certain function for it?
Thank you
0 commentaires
Réponse acceptée
Image Analyst
le 26 Juin 2016
Yes. mkdir()
if ~exist(folderName, 'dir')
mkdir(folderName);
end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur File Operations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!