Not able to cd into a folder
조회 수: 2 (최근 30일)
이전 댓글 표시
I have to make a folder in my project and then cd into it but not able to. The code line looks like this:
name="yash";
mkdir("dB_"+name);
Then I want to cd into that folder but not able to. Please help
댓글 수: 0
채택된 답변
Anay Aggarwal
2022년 7월 13일
Hi Yash
I have an understanding that you want to create a folder and then cd into it while runtime.
Following might help:
name="yash";
mkdir("dB_"+name); % create a folder
cd ([ 'dB_' convertContainedStringsToChars(name) ]);
This would create a folder and cd into it while runtime.
Regards
댓글 수: 0
추가 답변 (1개)
Voss
2022년 7월 13일
Maybe check that mkdir successfully creates the directory:
name="yash";
status = mkdir("dB_"+name)
Here status is true, so we know the directory was created.
Then cd into it:
cd("dB_"+name);
cd() % show the current working directory
If mkdir returns false, it means mkdir was not able to create the directory, maybe because you don't have write permissions in the parent directory (i.e., the directory you're in when you call mkdir).
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Search Path에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!