files with specific extension
116 views (last 30 days)
Show older comments
how do i find all files in a directory with a specific extension?
0 Comments
Accepted Answer
Thomas
on 30 May 2012
use the dir command
to find all files in a directory with the .m extensison us
dir('*.m')
for jpg
dir('*.jpg')
etc...
0 Comments
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!