Is it possible to set the startup directory to be the directory I was in when I ended the previous session of MATLAB?

7 ビュー (過去 30 日間)
I would like to have MATLAB remember my last directory and use that as my startup directory in the subsequent session.

採用された回答

MathWorks Support Team
MathWorks Support Team 2023 年 4 月 27 日
編集済み: MathWorks Support Team 2023 年 4 月 28 日
The ability to preserve the directory between sessions is not available in MATLAB.
To work around this issue, you may use finish.m to have MATLAB use the last directory and use that upon starting a new session. The finish.m file would store the pathname of the last directory into your user path.
The finish.m file would include the lines:
p = pwd;
userpath(p);
savepath;
Note that the command FINISH automatically executes before leaving MATLAB if the file finish.m exists on the path. More information on this functionality can be found in the documentation by typing
doc finish
Alternatively, it is possible to use startup.m and finish.m files in order to have MATLAB remember the last directory and use that upon starting a new session. The finish.m file would store the pathname of the last directory into a variable, and the startup.m file would load this variable and use its contents to determine what to change the current directory to.
The startup.m file would include the lines
if (exist([matlabroot filesep 'work' filesep 'last_dir.mat']) == 2)
load ([matlabroot filesep 'work' filesep 'last_dir'])
cd(last_dir);
end
whereas the finish.m file would include the lines
last_dir = pwd;
save([matlabroot filesep 'work' filesep 'last_dir'],'last_dir');
Note that the command STARTUP automatically executes when starting MATLAB if the file startup.m exists, and the command FINISH automatically executes before leaving MATLAB if the file finish.m exists. More information on this functionality can be found in the documentation by typing
doc startup
doc finish

その他の回答 (1 件)

Greg
Greg 2018 年 2 月 15 日
編集済み: MathWorks Support Team 2023 年 4 月 26 日
This is now a first-class-citizen preference option. This was introduced to general preferences in R2014b.

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

製品


リリース

R13SP1

Community Treasure Hunt

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

Start Hunting!

Translated by