how do I count number of folder?
41 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I do know how to count the number of files within the folder like this,
but is their way to file the number of folder inside the certain folder? (not file)
Réponse acceptée
José-Luis
le 7 Oct 2014
all_files = dir;
all_dir = all_files([all_files(:).isdir]);
num_dir = numel(all_dir);
Plus de réponses (1)
Image Analyst
le 8 Oct 2014
I think I answered this in your other question on it: http://www.mathworks.com/matlabcentral/answers/157750-changing-directory-to-do-same-work#answer_154298
0 commentaires
Voir également
Catégories
En savoir plus sur File Operations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!