Create a new folder using matlab.

How can I create a new folder to save the outputs in matlab? Is there any certain function for it?
Thank you

 採用された回答

Image Analyst
Image Analyst 2016 年 6 月 26 日

1 投票

Yes. mkdir()
if ~exist(folderName, 'dir')
mkdir(folderName);
end

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeFile Operations についてさらに検索

タグ

質問済み:

ck
2016 年 6 月 26 日

回答済み:

2016 年 6 月 26 日

Community Treasure Hunt

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

Start Hunting!

Translated by