How to create an array of files names from a structure created by 'dir' result?
27 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have a folder with multiple txt files and I would like to create an array of the files names.
I used the 'dir' function and recieved a structures with field for every file.
Now I would like to create an array of all the files names, how do I do that?
Thank you.
0 commentaires
Réponses (1)
Jon
le 14 Déc 2020
Modifié(e) : Jon
le 14 Déc 2020
This will put them into a cell array
list = dir('*.txt')
filenames = {list.name}
1 commentaire
Jon
le 14 Déc 2020
You can make a string array using
list = dir('*.txt')
filenames = string({list.name})
I'm not sure whether there is a way to go directly from list.name to a string array without the intermediate curly braces to make a cell array. Not a big issue, but maybe someone can suggest a cleaner way to to do this.
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!