storing filenames from directory

23 次查看(过去 30 天)
I would like to store filenames from a directory in a matrix. Filenames are of the following format:
11_1200.12.X
11_1201.37.X
11_1202.67.X
...
  2 个评论
Jan
Jan 2011-11-3
Where do you get these filenames from?
Baba
Baba 2011-11-3
i have them in my directory. .X stands for any extention

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2011-11-3
fileinfo = dir('*.X');
fnames = {fileinfo.name};
Now fnames{1}, fnames{2} and so on will be the file names.
Note: the list will not necessarily be sorted. Use sort({fileinfo.name}) if you need it sorted.
  2 个评论
Baba
Baba 2011-11-3
if I wanted to just keep the part between _ and. (1200,1201,1202) would I need to convert? i tried -*. and that didn't work
Walter Roberson
Walter Roberson 2011-11-4
namepart = cellfun(@(S) S(4:7), fnames, 'Uniform', 0);
If you prefer it in numeric form, you can use
namepart = cellfun(@(S) str2double(S(4:7)), fnames);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by