Filter löschen
Filter löschen

Matlab Cannot find files or folders matching

4 Ansichten (letzte 30 Tage)
Ahmed Hasan
Ahmed Hasan am 18 Nov. 2023
Beantwortet: Walter Roberson am 18 Nov. 2023
Having error at line (Cannot find files or folders matching error). What to do? Thanks. outputFolder = fullfile('Project'); rootFolder = fullfile(outputFolder, 'Brain classification');
  5 Kommentare
Ahmed Hasan
Ahmed Hasan am 18 Nov. 2023
What are "Project" and "Brain classification"? Files
Dyuman Joshi
Dyuman Joshi am 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?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

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

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by