How can i go through a folder with a loop?

3 views (last 30 days)
I have a folder full of different csv files. I need to run the same script for each one of them.
How can i do that?
Thanks in advance.

Accepted Answer

KSSV
KSSV on 27 Feb 2018
files = dir('*.csv') ; % you are in folder of csv files
N = length(files) ; % total number of files
% loop for each file
for i = 1:N
thisfile = files(i).name ;
% do what you want
end
  1 Comment
rebecca wise
rebecca wise on 3 Feb 2020
How would I then direct matlab to calculate the mean of the same column and sheet of all files?

Sign in to comment.

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!