How to log path to current folder in diary

4 views (last 30 days)
Is it possible to setup the diary function to log the path to current folder in the diary text file? Both changes made by the user and scripts.
Regards, Jocke

Accepted Answer

Jan
Jan on 1 Oct 2013
No.
The simplest way would to use a modified cd function, which writes to the command window. But even when cd.m shadows the builtin function, builtin('cd', tempdir) would be undetected.
Using cd is an insecure idea and causes troubles in multi-threading environments. E.g. the callback of a GUI element or a timer could change the current directory during another function runs. Therefore it is recommended to use absolute file names instead, which contain the path. Then there is no need to call CD and displaying the full path names of e.g. imported or exported files to the command window is sufficient and thread-safe.

More Answers (0)

Categories

Find more on Entering Commands 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!