Reading many files in one loop

5 views (last 30 days)
John
John on 4 Apr 2013
How can I read file names and convert them to a matrix? I have more than one file and I want to read their contents in one loop of the program. Thanks
  3 Comments
Jan
Jan on 4 Apr 2013
It is not useful to convert filenames to a matrix. Do you want to import the file's contents into a matrix?
John
John on 12 Apr 2013
no I need to read the contents of a specific folder's file names (as text), then run selection rule to pick names only that i want.
The problem is that files being send to a folder, with names of the format (yyyymmddhh.jpg) so each day there is a marked file as (yymmddT.jpg)... (T for terminate). The names are varying, i can't read all by fopen commands, i can't specify the required name unless they are in some form.

Sign in to comment.

Accepted Answer

Ahmed A. Selman
Ahmed A. Selman on 18 Apr 2013
Download a function file called folderFiles.m.
It'll do the job for you, hopefully.

More Answers (2)

ChristianW
ChristianW on 4 Apr 2013
doc dir
D = dir([myfolder 'my*file*name*.*']);
files = {D.name}';
  2 Comments
John
John on 12 Apr 2013
how to use files? I used it like
D = dir(['C:\Documents and Settings\John\My Documents\MATLAB\Pic_Down' '*.jpg'])
files = {D.name}';
files =
{}
any ideas?
Jan
Jan on 18 Apr 2013
Edited: Jan on 18 Apr 2013
This means, that no file matchs the filter:
'C:\Documents and Settings\John\My Documents\MATLAB\Pic_Down*.jpg'
Perhaps you want:
'C:\Documents and Settings\John\My Documents\MATLAB\Pic_Down\*.jpg'
Note: fullfile() is much better for constructing file names than STRCAT, HORZCAT or [.].

Sign in to comment.


Jan
Jan on 4 Apr 2013
It is always a good idea to read the FAQ, because it is efficient to profit from the errors of others.

Categories

Find more on File Operations in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!