Default path for GUI

6 次查看(过去 30 天)
Lalit Patil
Lalit Patil 2013-2-5
I have created a GUI. I want to do like Whenever that GUI starts it should only execute files from predefined path in it..
For that i want to assign path for it.. So, where i have to assign it and what will be command.?
Whether at below opening function or somewhere else.?

回答(1 个)

Jan
Jan 2013-2-5
编辑:Jan 2013-2-5
Yes, you can hard code a path and use cd() to change into this path. It would be safer to store this path in the handles struct and use absolute file names instead, because otherwise and cd() command in a Timer, another GUI or in the command line would confuse your GUI application.
It is user friendly not to hard code a path in the sourcecode of a GUI. Better add a textfield to the GUI, which conatins the current focussed folder and allow the user to change it. Whenever the value is modified, it is written as MAT file to the folder prefdir, such that at opening the GUI you can obtain the former value from this location again:
% In Opening function:
try
Data = load(fullfile(prefdir, 'MyGUIFolder.mat'));
myFolder = Data.myFolder;
catch % Not existing yet:
myFolder = pwd;
end
handles.myFolder = myFolder;
guidata(figureHandle, myFolder);
% In callback:
function myXYZ_callback(hObject, EventData, handles)
handles = guidata(hObject);
disp(handles.myFolder);
% In callback of the text field, which contains the folder:
function myText_callback(hObject, EventData, handles)
myFolder = get(hObject, 'String')
if exist(myFolder, 'dir') ~= 7
set(hObject, 'Color', 'r'); % Or what ever
return;
end
set(hObject, 'Color', 'k'); % Or what ever
save(fullfile(prefdir, 'MyGUIFolder.mat'), 'myFolder');

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by