extracting files from multiple directories
이전 댓글 표시
Hello everybody! I have a simple problem to solve: I have 100 folders and each folder contains around 2000 files, called v1,v2,v3...and the names are the same for every folder. How can I extract specific files (e.g v2-v10) in every folder and organize them such that all the v1 are in one new folder and the v2 in a second folder? Thank you
댓글 수: 8
Ingrid
2015년 5월 8일
why would you like to do this with matlab?
the cyclist
2015년 5월 8일
I assume the folder names and file names obey some pattern. Can you give some representative examples?
Camilla Santicoli
2015년 5월 9일
Image Analyst
2015년 5월 9일
That's what my attached program in my answer below does . Just change the starting folder and change the file pattern to simv*.* and put your reading and analysis code at the middle of the loop.
Camilla Santicoli
2015년 5월 9일
Image Analyst
2015년 5월 9일
Let's say that all 100 of your sim* folders lived under a parent folder called "All_My_Sim_Folders" - then that is what your starting folder would be.
Camilla Santicoli
2015년 5월 9일
Image Analyst
2015년 5월 9일
If that worked, maybe you could vote for my answer or mark it "Accepted".
채택된 답변
추가 답변 (1개)
Image Analyst
2015년 5월 9일
2 개 추천
See my attached demo where I recurse into all subfolders of a folder and list the files. You could then do anything you want with each file. It will be easy for you to adapt this to your specific folder names.
카테고리
도움말 센터 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!