eric2013 发表于 2022-7-2 02:30:57

MATLAB 获取文件大小


fid = fopen(filename);
fseek(fid,0,'eof');
fsize = ftell(fid);

页: [1]
查看完整版本: MATLAB 获取文件大小