Create a new folder using matlab.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ck
am 26 Jun. 2016
Beantwortet: Image Analyst
am 26 Jun. 2016
How can I create a new folder to save the outputs in matlab? Is there any certain function for it?
Thank you
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 26 Jun. 2016
Yes. mkdir()
if ~exist(folderName, 'dir')
mkdir(folderName);
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu File Operations 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!