我有一些数据存储在.csv
文件中,文件大小不同。我需要导入大小超过某个特定值(例如10MB)的文件。我怎样才能做到这一点?我正在使用xlsread
导入文件。
答案 0 :(得分:1)
您可以使用dir
在文件所在的目录中获取文件信息
threshold = 1000; % set threshold for size
filenames = dir('*.csv');
for i = 1:length(filenames)
if filenames(i).bytes> threshold
data=xlsread(filenames(i).name);
***your code here
end
end