Create a new folder using matlab.
1 view (last 30 days)
Show older comments
How can I create a new folder to save the outputs in matlab? Is there any certain function for it?
Thank you
0 Comments
Accepted Answer
Image Analyst
on 26 Jun 2016
Yes. mkdir()
if ~exist(folderName, 'dir')
mkdir(folderName);
end
0 Comments
More Answers (0)
See Also
Categories
Find more on File Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!