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!