필터 지우기
필터 지우기

Changing file path and load multiple excel files

조회 수: 1 (최근 30일)
Ancalagon8
Ancalagon8 2023년 2월 26일
댓글: Image Analyst 2023년 3월 1일
I have some specific folders where i have saved several excel files with the filename in the following format:
code_parameterA_year.xls, code_parameterB_year.xls, etc
where code and year changes and I need to load each excel file. I need help loading each excel file using the following code:
path = pwd
code='station1';
year='2022';
S = readtable(fullfile(path, code '_parameterA_' year'.xls'));

채택된 답변

Image Analyst
Image Analyst 2023년 2월 26일
Use a file data store fileDatastore
% Specify the top level folder.
topLevelFolder = pwd; % Wherever it is....
% Process a sequence of files.
filePattern = fullfile(topLevelFolder, '*.xls*');
fds = fileDatastore(filePattern, 'ReadFcn',@readtable) % Create an image Datastore
% Get all filenames into one cell array. Filenames have the complete path (folder prepended).
allFileNames = fds.Files;
numFiles = numel(fds.Files);
for k = 1 : numel(allFileNames)
% Get this file name.
fullFileName = allFileNames{k};
fprintf('Processing %s\n', fullFileName);
% Now do something with fullFileName, such as passing it to readtable().
end
  댓글 수: 4
Ancalagon8
Ancalagon8 2023년 3월 1일
편집: Ancalagon8 2023년 3월 1일
using the above code from the FAQ link, I succesfully loaded all excel files:
filePattern = fullfile(myFolder, '*.xls');
theFiles = dir(filePattern);
for k = 1 : length(theFiles)
baseFileName = theFiles(k).name;
fullFileName = fullfile(theFiles(k).folder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
data=readtable(fullFileName)
end
but data table only stores the last excel. Do you now why?
Image Analyst
Image Analyst 2023년 3월 1일
Yes, you just load the workbook file into the "data" variable and then you never do anything with data. Plus on every iteration data is overwritten by the current workbook so at the very end you'll only have data from the very last workbook. If you want to do something with data, then do so. If you also want to save it for use later, outside the loop, then you'll need to save it somehow, like in a cell array.
data{k} = readtable(fullFileName);

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by