
Invisible file in uigetfile
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Sam Mlawer
 el 9 de Mzo. de 2021
  
    
    
    
    
    Respondida: Monisha Nalluru
    
 el 12 de Mzo. de 2021
            I'm making an app and I'm trying to use uigetfile to select a text file to open and analyze, but when I run uigetfile with no arguments these files are not visible in the ui. Windows says these text files are of type "File" which is probably why these files aren't showing up. If I manually enter the filenames, MATLAB has no problem opening them up, but that isn't really an ideal way for the app to work. Any ideas on how to make these files visible in uigetfile?
Thanks!
0 comentarios
Respuesta aceptada
  Monisha Nalluru
    
 el 12 de Mzo. de 2021
        uigetfile function opens a diaglog by default checking to all MATLAB files.

You can change the option to "All Files" in order to display the text files in dialog box.
As an example
filename = uigetfile("*.txt"); % opens a dialog box with all filenames ending with .txt
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!