Clear Filters
Clear Filters

Matlab Cannot find files or folders matching

4 views (last 30 days)
Having error at line (Cannot find files or folders matching error). What to do? Thanks. outputFolder = fullfile('Project'); rootFolder = fullfile(outputFolder, 'Brain classification');
  5 Comments
Ahmed Hasan
Ahmed Hasan on 18 Nov 2023
What are "Project" and "Brain classification"? Files
Dyuman Joshi
Dyuman Joshi on 18 Nov 2023
"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?

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 18 Nov 2023
outputFolder = fullfile('Project');
rootFolder = fullfile(outputFolder, 'Brain classification');
if ~isfolder(outputFolder); mkdir(outputFolder); end
if ~isfolder(rootFolder); mkdir(rootFolder); end

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!