How to force matlab to save before exit?

Hello all I am using matlab via server, so I quit MatLab several times before remembering to save. Is there is any way to fore MatLab to save the file code every several minutes. Or method to enforce MatLab to ask for save before quit .

2 Comments

What exactly is "the file code"? Do you mean the contents of the base workspace, the files opened in the editor or some specific files?
I mean that file in the editor .

Sign in to comment.

 Accepted Answer

Inside of your finish.m file, you can save the files using the editor api.
files = matlab.desktop.editor.getAll;
save(files)

1 Comment

thanks a lot, it works very good. this saves all in my matlab editor.

Sign in to comment.

More Answers (1)

You should take a look at the help for quit and exit - there it is described that if you have a .m-file finish.m it will run before quiting - so in such a file you can have automatic save commands or something even more elaborate. You might also be interested in the diary function - I start every matlab session with:
diary(fullfile('/home','bjorn','MatlabRuns',[datestr(clock,30) '.txt']))
That way all my commandline activity is saved away. (Got this trick from someone else...)

Categories

Find more on Environment and Settings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!