Matlab Cannot find files or folders matching

4 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Develop 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