how to create new folder ?
8 次查看(过去 30 天)
显示 更早的评论
How to create a new folder ? if the folder already exist , the program will add another new folder. for example, i want to create a folder named 'Image' , if the 'Image' folder already exist, program will create another folder name 'Image1' .
0 个评论
回答(1 个)
Stephen23
2018-4-13
编辑:Stephen23
2024-11-4
You could download my FEX submission nextname:
It will return the next unused file/folder name, which you can then simply use with mkdir. Each time you need a new directory simply call it with e.g.:
subd = 'absolute or relative path to where the folders are';
name = nextname(subd,'Image<1>',true);
mkdir(name)
1 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!