Reading files with extension.
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm using:
A = dir(uigetdir('C:\','Select directory of a files'));
What can I use instead of fullfife() to load only files with file extension *.a ? In this line to have absolute file names?
Thank You.
0 commentaires
Réponses (1)
Azzi Abdelmalek
le 7 Fév 2013
A = dir([uigetdir('C:\','Select directory of a files'),'/*.a']);
3 commentaires
Azzi Abdelmalek
le 7 Fév 2013
A = dir([uigetdir('C:\','Select directory of a files'),'/*.a']);
filename={A.name}
Voir également
Catégories
En savoir plus sur File Operations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!