Access parent folder when using a directory junction?
134 次查看(过去 30 天)
显示 更早的评论
Normally you can switch to or load files from the parent folder by using the double period. This doesn't work when both the parent folder and current folder are in an external drive linked to with a directory junction.
I ran out of space so I moved my project to an external drive. This broke all my links so I made a directory junction to make it look like my project is still in the same folder it was previously in. When I am in a subfolder of my project I can no longer access the parent folder.
- I am in folder: F:\project_folder\sub_folder1\sub_folder2
- There is a directory junction so Matlab thinks it is in: C:\Users\UserName\Documents\project_folder\sub_folder1\sub_folder2
- The junction is at a higher level so C:\Users\UserName\Documents\project_folder -> F:\project_folder
- I want to cd to sub_folder1 which, of course, is also under the junction
in 2017b you get:
>> cd('..\')
Error using cd
Cannot CD to ..\ (Name is nonexistent or not a directory).
So whats the best alternative way to get the parent folder without the absolute path?
2 个评论
Stephen23
2018-2-4
编辑:Stephen23
2018-2-4
Why do you need to cd anyway? Using cd is slow and makes debugging harder. All MATLAB filereading/writing functions accept relative/full filepaths, so it is seldom useful or required to use cd.
Use an absolute path: it is faster, neater, easier to debug, and avoids the kind of pointless hassles that you are having now.
采纳的回答
Guillaume
2018-2-4
There is a directory junction so Matlab thinks it is in: C:\Users\UserName\Documents\project_folder\sub_folder1\sub_folder2
No. If you pwd, you'll see that matlab think it is in F:\project_folder\sub_folder1\sub_folder2. It seems it's a limitation of matlab. If you cd into a junction matlab actually switch to the target directory instead.
I doubt there's a way around that, you can report that as a bug to mathworks and see what they say. However, Stephen is right, you shouldn't be using cd, which can lead to all sort of bugs by bringing functions in and out of scope. Much better would be to build the path of the files/folders you want to access and use absolute or relative path. E.g. instead of something like
cd somepath
data = load('somefile.mat');
use
data = load(fullfile(somepath, 'somefile.mat'));
which would work properly with junctions.
6 个评论
Guillaume
2018-2-5
However when I pwd I get ...
I wouldn't rely on this since it's clearly not the case for me (on two different machines), using R2017b:
>> !mklink /J test D:
Junction created for test <<==>> D:
>> pwd
ans =
'C:\Users\guillaume\Documents\MATLAB\answers'
>> cd test
>> pwd
ans =
'D:\'
Matlab has clearly switched to the junction target so you of course can go back to the original directory.
In my opinion, you should never cd into the junction and always build your paths from a directory above the junction. And you shouldn't pwd anything, the initial directory should be an input to the code.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!