How to filter out files with a list of specific string in UIGETFILE command?
Mostra commenti meno recenti
Hi,
I need to filter the visible list of files containing multiple possible specific strings with UIGETFILE.
Example:
My folder contains following files:
- EFI100.xls
- EFA200.xls
- EFA500.xls
- EFB100.xls
- etc.
I would like to see only EFA*.xls and EFB*.xls file in te selection list.
The command [xlsfile] = uigetfile('EFA*.xls','Select Excel file') works, ok.
But I want to list EFI*.xls too, I can I do?
Thanks.
Risposta accettata
Più risposte (1)
As far as I can see, the file pattern [x] is not implemented in uigetfile:
xlsfile = uigetfile('EF[AI]*.xls', 'Select Excel file') % Not working
I've tried this with R2018b only.
Categorie
Scopri di più su App Building in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!