Reading files with extension.
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Azzi Abdelmalek
2013 年 2 月 7 日
A = dir([uigetdir('C:\','Select directory of a files'),'/*.a']);
3 件のコメント
Azzi Abdelmalek
2013 年 2 月 7 日
A = dir([uigetdir('C:\','Select directory of a files'),'/*.a']);
filename={A.name}
参考
カテゴリ
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!