1、先记住当前路径
2、打开文件uigetfile的时候带上路径参数
global newpath;
oldpath=cd;
if isempty(newpath) | ~exist('newpath')
newpath=cd;
end
%%%%%%%%%%cd(newpath);
[filename, pathname] = uigetfile( ...
{'*.m;*.fig;*.mat;*.mdl','MATLAB Files (*.m,*.fig,*.mat,*.mdl)';
'*.m', 'M-files (*.m)'; ...
'*.fig','Figures (*.fig)'; ...
'*.mat','MAT-files (*.mat)'; ...
'*.mdl','Models (*.mdl)'; ...
'*.*', 'All Files (*.*)'}, ...
'Pick a file',newpath);
if filename~=0
newpath=pathname;
end
%%%%%cd(oldpath); |