Clear Filters
Clear Filters

loading all files from a user specified folder into a gui

2 views (last 30 days)
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

Accepted Answer

Mahesh
Mahesh on 19 Jan 2018
x = uigetfile({'*.txt'});
fid = fopen(x);

More Answers (1)

Matt J
Matt J on 19 Jan 2018
Edited: Matt J on 19 Jan 2018
  1 Comment
Adam
Adam on 19 Jan 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.

Sign in to comment.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!