System command 'cd' not working
Show older comments
I am experiencing a problem when trying to use the Matlab system command 'cd' to change the current system directory. On my laptop, it works fine. However, on my university desktop machine (networked mac pro), it doesn't seem to want to work no matter what I do.
For example, say I start in the directory /test. I verify this by typing > !pwd , which tells the system to print the current directory.
If I then assign a matlab variable a path string e.g.
> datapath = '/anotherdirectory/test2'
and then try to change into it by typing
> cd(datapath)
When I do this on my laptop, !pwd returns /anotherdirectory/test2. However, on my desktop, !pwd returns /test. No matter what I do, cd will not change the system directory outside the Matlab environment on my work machine. I've tried all sorts of variants to get the cd command to work such as
> system(horzcat('cd ',datapath))
as well, but without success. This is becoming a major pain for me, because none of my data reduction scripts are going to function if I cannot get this functionality to work without MAJOR overhauls. Anyone got any ideas? Perhaps it is some sort of permissions issue with my work machine, where it won't allow another program to perform system commands or something?
Accepted Answer
More Answers (2)
Walter Roberson
on 9 Nov 2011
The first thing I would suggest trying is
which -all cd
just in case you somehow have introduced your own cd.m file .
Also, what does pwd (without the '!') return in each case?
4 Comments
Walter Roberson
on 9 Nov 2011
And of course on the desktop I would check that /anotherdirectory/test2 exists on the machine, and doesn't happen to be a symbolic link to /test
Craig Anderson
on 9 Nov 2011
Kaustubha Govind
on 9 Nov 2011
Does your shell startup script always force the shell to start in a certain directory? I've seen that this has been the most likely cause for these issues in the past. One good way of testing this is to start a new shell window from within MATLAB and check if it always opens in a certain directory. I'm not familiar with Mac, but on Windows, you would use something like "!start &" to start a new system command window.
Craig Anderson
on 10 Nov 2011
Konrad Gromaszek
on 13 Sep 2018
Hello,
On my Mac code I've used
path_str = './MLP';
cd(path_str);
instead of
cd('./MLP');
... and it works!
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!