Clear Filters
Clear Filters

i am trying to open a text file in my gui but its showing just the file name since i am new to matlab kindly help

1 view (last 30 days)
[filename]=uigetfile({'*.txt'},'File Selector');
set(handles.edit2,'string',filename);

Answers (1)

Walter Roberson
Walter Roberson on 31 May 2015
[filename, filepath]=uigetfile({'*.txt'},'File Selector');
fullname = fullfile(filepath,filename);
%now read it.
content = fileread(fullname); %one of many ways to read files
%and display the content
set(handles.edit2, 'string', content);

Categories

Find more on Entering Commands 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!