how to create new folder ?

조회 수: 7 (최근 30일)
afiqa  yazid
afiqa yazid 2018년 4월 13일
편집: Stephen23 2020년 1월 1일
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' .

답변 (1개)

Stephen23
Stephen23 2018년 4월 13일
편집: Stephen23 2020년 1월 1일
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 exactly this code:
name = nextname('image','1','');
mkdir(name)
  댓글 수: 1
Stephen23
Stephen23 2018년 4월 13일
편집: Stephen23 2018년 4월 13일
@afiqa yazid: my answer shows you exactly how you need to use it. I recommend that you read the Examples tab on the FEX page too.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by