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???????

 Respuesta aceptada

ES
ES el 23 de Dic. de 2013

0 votos

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

Más respuestas (0)

Categorías

Más información sobre Environment and Settings en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 23 de Dic. de 2013

Comentada:

el 23 de Dic. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by