For loop only running through the first file and not all files?

5 views (last 30 days)
Hi all,
I'm having a bit of a trouble with my nested for loops. For some background, there is a folder for each year (say 1979 - 2015), and within each year is twelve folders for each month (01-12), and within each of those subfolders is a file for each day. Below is my code:
path = '/'; %just the path to the directory
finaldata = [];
for year = 1979:2015
for month = 1:12
string_year = string(year);
string_month = sprintf('%02d',month);
filepath = path + string_year + '/' + string_month + '/';
folders = dir(filepath +'*.nc');
if ~isempty(folders)
filename = folders.name;
files = filepath + filename;
for day = 1:numel(files)
%data processing
%x is output of data, which is a single number for each file and then that is put in the empty array
finaldata(year,month,day) = x;
end
end
end
end
However, whenever I run the code, it only takes the first file within each monthly folder, giving me an output of much less than one would want (it gives me 12 points per year, and I need 365). How can I tell the for loop to run through all the files and not just the first one in each folder? I believe my issue is something with these lines:
filename = folders.name;
files = filepath + filename;
for day = 1:numel(files)
Thank you!
  1 Comment
Stephen23
Stephen23 on 2 Nov 2020
Do NOT use path as a variable name, as this shadows the very important inbuilt path function:
Rather than messing around with fragile string concatenation like this:
path + string_year + '/' + string_month + '/';
you should use robust fullfile (because it is the correct tool for the job), e.g.
fullfile(mypath,string_year,string_month)

Sign in to comment.

Accepted Answer

Michael Croucher
Michael Croucher on 1 Nov 2020
Edited: Michael Croucher on 1 Nov 2020
How about something like this?
path = './'; %just the path to the directory
finaldata = [];
for year = 1979:2015
for month = 1:12
string_year = string(year);
string_month = sprintf('%02d',month);
filepath = path + string_year + '/' + string_month + '/';
files = dir(filepath +'*.nc');
if ~isempty(files)
for day = 1:numel(files)
full_name = filepath + files(day).name; %This will contain the full filename of each file
%data processing
%x is output of data, which is a single number for each file and then that is put in the empty array
%finaldata(year,month,day) = x;
end
end
end
end

More Answers (0)

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!