MATLAB路径下文件遍历
Demo遍历输出路径下所有.csv文件的路径
clear all;
close all;
clc;
foldPath = 'F:\yourfoldname';
searchFoldStr = strcat(foldPath,'\*.csv');
dirStruc = dir(searchFoldStr);
dirCell = struct2cell(dirStruc);
fileTotal = size(dirCell,1);
for fileIndex = 1:fileTotal
filepath = cell2mat(strcat(foldPath,dirCell(1,fileIndex)));
% or filepath = strcat(foldpath,cell2mat(dirCell(1,fileIndex)));
disp filepath;
end
Another method
foldPath = 'F:\yourfoldname';
% fold path
searchFoldStr = strcat(foldPath,'\*.csv');
dirStruc = dir(searchFoldStr);
for fileIndex = 1:fileTotal
filepath = strcat(foldPath,dirStruc(fileIndex).name);
disp filepath;
end
推荐阅读
- 开学第一天(下)
- 【故障公告】周五下午的一次突发故障
- 生活随笔|好天气下的意外之喜
- MongoDB,Wondows下免安装版|MongoDB,Wondows下免安装版 (简化版操作)
- 汇讲-勇于突破
- Android中的AES加密-下
- 说的真好
- 放下心中的偶像包袱吧
- Linux下面如何查看tomcat已经使用多少线程
- 【1057快报】深入机关,走下田间,交通普法,共创文明