Copy a prticular format file from multiple folders and their subfolders to one folder.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Image Analyst
am 21 Sep. 2017
Bearbeitet: Image Analyst
am 21 Sep. 2017
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 Kommentare
Siehe auch
Kategorien
Mehr zu File Operations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!