how to select multiple files with similar extension
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MAHMOUD ALZIOUD
il 12 Ott 2017
Commentato: MAHMOUD ALZIOUD
il 12 Ott 2017
Hello Guys, I have a folder that has a lot of files, how can i ask MATLAB to select just the files with the extension(07) to be run in MATLAB?
0 Commenti
Risposta accettata
Jonathan Chin
il 12 Ott 2017
try looking at the following function dir
path =pwd;
extension = '.07'
rtnFiles=dir(fullfile(path,['*' extension]))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!