Readall files with different size,format , and extension in a directory

조회 수: 1 (최근 30일)
Mini Me
Mini Me 2014년 4월 18일
댓글: Mini Me 2014년 4월 18일
Hello,
I am trying to read 21 files that is in my directory. Some of the files are *a.txt and others *a.DAT files. The *a.DAT files has $ included in the data and are comma delimited and the *.txt files are comma delimited..This is the code I'm using below:
fnames = dir('C:\Program Files\MATLAB71\work\subfolder\files location);
tradata = cell(1,length(fnames));
for k=1:length(fnames)
fname = fnames(k).name;
tradata{k} = dlmread(fname, ',', '%e%c%f%*$';
End
Each time I run the code it finds 23 files in the dir instead of 21. When I look inside fname the first two files are:. And .. so when it gets too trada{k} it throws an error saying No such file in directory. Why does it see those files '.'and '..'. it doesn't make sense. So when I change the full directory to a specific type. Lets say *a.txt. it see all the *a.txt files but won't read them because when it call text text read it throws an error. Saying the range(l)=0 so there's no range(l)=1. I don't understand, help!!!

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 4월 18일
folder='C:\Program Files\MATLAB71\work\subfolder\files location'
fnames = [dir([folder '\*.dat']);dir([folder '\*.txt'])];
  댓글 수: 6
Mini Me
Mini Me 2014년 4월 18일
@Azzi So I decided to change the dlmread line by Tradata{k}=load(fname(k,1), ',') Error: unexpected text in line number 1. :'$'
Any help?
Mini Me
Mini Me 2014년 4월 18일
Size of fnames is 21 1 which is #files in directory Size of fname is 1 17 which I think is the number of letters in the file name

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by