how to select multiple files with similar extension
    3 views (last 30 days)
  
       Show older comments
    
    MAHMOUD ALZIOUD
 on 12 Oct 2017
  
    
    
    
    
    Commented: MAHMOUD ALZIOUD
 on 12 Oct 2017
            Hello Guys, I have a folder that has a lot of files, how can i ask MATLAB to select just the files with the extension(07) to be run in MATLAB?
0 Comments
Accepted Answer
  Jonathan Chin
      
 on 12 Oct 2017
        try looking at the following function dir
path =pwd;
extension = '.07'
rtnFiles=dir(fullfile(path,['*' extension]))
More Answers (0)
See Also
Categories
				Find more on File Operations in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!