loading all files from a user specified folder into a gui
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Stephen Devlin
el 19 de En. de 2018
Comentada: Adam
el 19 de En. de 2018
Hi,
Is there a way for a GUI to allow a user to select a folder of text files on their own computer and have the GUI work on all the txt files within that folder?
Best regards
Steve
0 comentarios
Respuesta aceptada
Más respuestas (1)
Matt J
el 19 de En. de 2018
Editada: Matt J
el 19 de En. de 2018
1 comentario
Adam
el 19 de En. de 2018
Combined with something like:
info = dir( folder );
filenames = { info.name };
[~,~,ext] = cellfun( @fileparts, filenames , 'UniformOutput', false )
txtIdx = strcmp( ext, { '.txt' } )
filenames = filenames( txtIdx )
to give you all the filenames of the desired type from the directory.
Ver también
Categorías
Más información sobre File Operations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!