You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
cdtemp(DIR)
change current directory to DIR, but automatically return to
original directory when the calling function or subfunction
finishes or gets an error.
Basically this function is equivalent with adding next code to your
function:
old_dir = cd(DIR);
C = onCleanup(@()cd(old_dir));
When CDTEMP is used multiple times in the same function or
subfunction, then on exit current directory will be set to the
first orginal directory.
The CLEAR command will also change current directory to the first
original directory.
Example:
Change to new directory and return when the function that uses this
command finishes.
cdtemp('S:\data');
Change to new directory, do your things and return to original
directory.
cdtemp('S:\data');
...
clear
see als cd, onCleanup, clear
Cite As
Peter van den Biggelaar (2026). Temporary change directory (https://www.mathworks.com/matlabcentral/fileexchange/40150-temporary-change-directory), MATLAB Central File Exchange. Retrieved .
General Information
- Version 1.0.0.0 (2.42 KB)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
| Version | Published | Release Notes | Action |
|---|---|---|---|
| 1.0.0.0 |
