필터 지우기
필터 지우기

I used "uigetdir" in a GUI and want that folder window starts from directory of m file of the GUI. I changed current directory by mfilepath and cd commands but it did not work. How can achieve this?

조회 수: 5 (최근 30일)
I used following script to obtain m file directory and to change current directory:
p = mfilename('fullpath');
s = find(p=='\');
filePath = p(1:s(end)-1);
cd(filePath);
s and filePath part is for obtaining the folder directory, not for m file address.
Then I used uigetdir(cd). It works on R2013b but not on R2011b. How can I overcome this situation for R2011b?

답변 (1개)

Walter Roberson
Walter Roberson 2015년 7월 30일
p = mfilename('fullpath');
[filePath, filename, ext] = fileparts(p);
user_selected_dir = uigetdir(filePath);

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by