files with specific extension
8 ビュー (過去 30 日間)
古いコメントを表示
how do i find all files in a directory with a specific extension?
0 件のコメント
採用された回答
Thomas
2012 年 5 月 30 日
use the dir command
to find all files in a directory with the .m extensison us
dir('*.m')
for jpg
dir('*.jpg')
etc...
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
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!