フィルターのクリア

Matlab Cannot find files or folders matching

4 ビュー (過去 30 日間)
Ahmed Hasan
Ahmed Hasan 2023 年 11 月 18 日
回答済み: Walter Roberson 2023 年 11 月 18 日
Having error at line (Cannot find files or folders matching error). What to do? Thanks. outputFolder = fullfile('Project'); rootFolder = fullfile(outputFolder, 'Brain classification');
  5 件のコメント
Ahmed Hasan
Ahmed Hasan 2023 年 11 月 18 日
What are "Project" and "Brain classification"? Files
Dyuman Joshi
Dyuman Joshi 2023 年 11 月 18 日
"What are "Project" and "Brain classification"? Files"
Then you need to include their extensions as well.
What is the objective? What are you trying to do?

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 11 月 18 日
outputFolder = fullfile('Project');
rootFolder = fullfile(outputFolder, 'Brain classification');
if ~isfolder(outputFolder); mkdir(outputFolder); end
if ~isfolder(rootFolder); mkdir(rootFolder); end

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by