There are two things I want to do:
- Get a list of all the directory names within a directory, and
- Get a list of all the file names within a directory
How can I do this in MATLAB?
Right now, I'm trying:
dirnames = dir(image_dir);
but that returns a list of objects, I think. size(dirnames)
returns the number of attributes, and dirnames.name
only returns the name of the first directory.
The function DIR actually returns a structure array with one structure element per file or subdirectory in the given directory. When getting data from a structure array, accessing a field with dot notation will return a comma-separated list of field values with one value per structure element. This comma-separated list can be collected into a vector by placing it in square brackets
[]
or a cell array by placing it in curly braces{}
.I usually like to get a list of file or subdirectory names in a directory by making use of logical indexing, like so: