Create a new folder using matlab.
1 回表示 (過去 30 日間)
古いコメントを表示
How can I create a new folder to save the outputs in matlab? Is there any certain function for it?
Thank you
0 件のコメント
採用された回答
Image Analyst
2016 年 6 月 26 日
Yes. mkdir()
if ~exist(folderName, 'dir')
mkdir(folderName);
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で File Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!