필터 지우기
필터 지우기

Want to iterate over subfolders within folder

조회 수: 26 (최근 30일)
Shri Chand
Shri Chand 2023년 3월 23일
댓글: Shri Chand 2023년 3월 27일
I have a current working director or folder in MATLAB and wrote a function in this directory. Within this directory, I have a folder that contains 10 subfolders, each of which contains two different types of files (one is .edf and one is .xlsx). My function is designed to take an edf file and the corresponding xlsx file and compute something based on these.
So, my goal is to find a way that I can loop through these 10 subfolders and call my function on the edf and xlsx files in each subfolder one by one. Is there any way I can do this? Thanks.
  댓글 수: 4
Shri Chand
Shri Chand 2023년 3월 23일
@Jon, thanks for your response. I looked at the dir command and tried using this. I am just not sure how to iterate through folders in dir to call the function on each of these subfolders. The documentation for dir did not have any examples of how to do this.
Rik
Rik 2023년 3월 23일
The point is that nothing in your question actually requires itterating through folders, only through file pairs. And dir can generate that list of files for you.

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

채택된 답변

Fangjun Jiang
Fangjun Jiang 2023년 3월 23일
Files=dir('**/*.xlsx') will give you a list of all the .xlsx files in the folder and sub-folder.
Observe Files(1), Files(2), ...
Use a for-loop to go through all the files in your program, use fileparts() to get the folder name. Use fullfile() to get the full path of the .edf file if needed.
  댓글 수: 7
Fangjun Jiang
Fangjun Jiang 2023년 3월 26일
xlsread(fullfile(Files(1).folder, Files(1).name))
Shri Chand
Shri Chand 2023년 3월 27일
@Fangjun Jiang Thanks very much for your help!

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by