A follow up question would be, what if these subfolders are all on a dropbox link and there are more than 10 of them (far too large too download them all to my computer). Is there any way I can access these subfolders in MATLAB to use my function on them iteratively? Thanks.
Want to iterate over subfolders within folder
20 views (last 30 days)
Show older comments
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 Comments
Rik
on 23 Mar 2023
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.
Accepted Answer
Fangjun Jiang
on 23 Mar 2023
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.
More Answers (0)
See Also
Categories
Find more on Data Import and Analysis 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!