matlab 获取目录下所有文件信息

 matlab code 示例:

filepath = ‘*****’;

如:filepath = 'Images/;   //文件的相对路径

f=dir(filepath)

f =

593x1 struct array with fields:
    name
    date
    bytes
    isdir
    datenum

你可能感兴趣的:(Date,struct,matlab)