Browse option In matlab GUI

HI Team.
I have One Query , I have designed GUI which has EDIT Text & Browse Button, I Use Browse Button to Browse the Folder path later task is to load all Files which are in folder
BUT My Every time I Browse , i need to type '\' in EDIT text after Browsing the Folder Path
CAN Any one Help how could Avoid Using this '\' every time???????

 Accepted Answer

ES
ES on 23 Dec 2013
if you use uigetdir, like this,
sFolderName = uigetdir(pwd, 'Select Folder !');
then append your '/' and then display in the edit box..
set(handles.edit1,'string',[sFolderName,'/']);% for linux use the other slash

More Answers (0)

Categories

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

Asked:

on 23 Dec 2013

Commented:

on 23 Dec 2013

Community Treasure Hunt

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

Start Hunting!