Copy a prticular format file from multiple folders and their subfolders to one folder.
조회 수: 1 (최근 30일)
이전 댓글 표시
So I have been trying to lean MATLAB for almost a week Now. I am trying to find a way to copy a prticular format file(can be csv or mat or png) from multiple folders and their subfolders to one folder. any help would be really appriciated.
Thanks
댓글 수: 0
답변 (1개)
Image Analyst
2017년 9월 21일
편집: Image Analyst
2017년 9월 21일
Gosh, a week? I admire your tenacity but if you're stumped for more than a day or two, ask us.
Simply use dir() with the ** pattern to get all files in all subfolders. Then use copyfile(sourceName, destinationName) to do the move. Here's a start in the attached file.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!