Reading files with extension.
Ältere Kommentare anzeigen
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.
Antworten (1)
Azzi Abdelmalek
am 7 Feb. 2013
A = dir([uigetdir('C:\','Select directory of a files'),'/*.a']);
3 Kommentare
ZK
am 7 Feb. 2013
Azzi Abdelmalek
am 7 Feb. 2013
A = dir([uigetdir('C:\','Select directory of a files'),'/*.a']);
filename={A.name}
ZK
am 8 Feb. 2013
Kategorien
Mehr zu File Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!