How to use only specific files in directory in GUI?
    7 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Hello all.
I have a GUI function that can open a directory/folder of images. What I would like to do is actually only select the files/images with the word "PU" in their titles. How would I be able to do this/approach this problem?
Thank you.
2 commentaires
  Rik
      
      
 le 14 Fév 2019
				Are you using a special file picker, the builtin uigetfile, or dir to get file names?
Réponses (2)
  Jan
      
      
 le 15 Fév 2019
        folder   = uigetdir('Choose a folder');
List     = dir(fullfile(folder, 'PU*.*'));
FileName = fullfile(folder, {List.name});
for iFile = 1:numel(FileName)
    File = FileName{iFile}
    ... now open it
end
0 commentaires
  Robert
      
 le 15 Fév 2019
        Not sure what you mean by 'select', but you can show a user only the files containing 'PU' in their titles using
[fileName, pathName] = uigetfile('*PU*', 'This is my dialog title', 'MultiSelect', 'on');
Voir également
Catégories
				En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



