How to save sequence of file names into an array?
30 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi!
I have a folder full of files in it and I want to save the name of files in an array. Each cell corresponds to a string of the file name. How can I do this?
0 Commenti
Risposte (2)
Walter Roberson
il 20 Ago 2013
dinfo = dir('YourDirectory');
names_cell = {dinfo.name};
You might also want to
strcat('YourDirectory', '/', names_cell)
if you want to construct the more qualified file names.
0 Commenti
the cyclist
il 20 Ago 2013
Modificato: the cyclist
il 20 Ago 2013
Use the dir command.
>> s = dir;
will create a structure with a list of all the files and directories. If you need help converting that info from a structure to a cell array, I recommend you post a second question about that.
0 Commenti
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!