Effacer les filtres
Effacer les filtres

Matlab Cannot find files or folders matching

4 vues (au cours des 30 derniers jours)
Ahmed Hasan
Ahmed Hasan le 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 commentaires
Ahmed Hasan
Ahmed Hasan le 18 Nov 2023
What are "Project" and "Brain classification"? Files
Dyuman Joshi
Dyuman Joshi le 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?

Connectez-vous pour commenter.

Réponses (1)

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

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by