dealing with \ and / (windows vs. unix) for path definition.
190 次查看(过去 30 天)
显示 更早的评论
Hi everybody,
Simple question, let's say I'm using mac osx and some colleagues use windows... and I have to share a matlab script. Problem, this script needs to look in folder to load data files or print figures:
load ./data/data.mat
plot(data(:,1),data(:,2))
print -dpdf ./graph/figure.pdf
this is how it is written on unix system, but on windows I have to replace all the / by \
load .\data\data.mat
...
Is there a way to deal with that or the only way to make it works on both systems is to add a conditional statement like
if isunix load ./data/data.mat else load .\data\data.mat end
thanks for any help,
cheers
Pieter
0 个评论
采纳的回答
Image Analyst
2014-2-21
Matt's right. You can use forward slashes when making up path strings under Windows versions of MATLAB. It handles them just fine. No need to ever use backslashes. Actually you don't even need filesep. This works just fine as a path:
myMFilesPath = 'D:/MATLAB/work/my m-files'; % Perfectly fine under Windows.
2 个评论
Ankit Labh
2024-8-8
I must say that this is not working. If I have a file path in windows, it is simply not working for mac and vice versa.
An example is the following:
cd ':\Users\E_Drive_OD\Folder1'
This is how one goes to the Folder1 directory, but each time I use matlab in mac, I have to give Mac like directory address, which is the following:
cd '/Users/E_Drive_OD/Folder1'.
Can you suggest me a simple way to convert the folder directory address compatible with both? I am looking for something like this:
magic_mac(windows_path) % converts windows path to mac path
magic_win(mac_path) % converts mac path to windows path
Thank you.
Stephen23
2024-8-8
编辑:Stephen23
2024-8-8
"I must say that this is not working"
Your Windows example shows that you are using backslashes, not forward slashes like this answer advises. Forward slashes are accepted on Mac, Linux, and Windows. This is explained in the MATLAB documentation: "A forward slash (/) is a valid separator on any platform"
If you are using relative paths (i.e. using . or .. on the leftmost end of the path) then forward slashes will work with one path on all of those platforms.
Of course how those OS's refer to drives and various special folders is completely different, so if you want one absolute path that will work on all platforms then you are out of luck.
更多回答(3 个)
pieter vandromme
2014-2-21
编辑:pieter vandromme
2014-2-21
1 个评论
Image Analyst
2014-2-21
编辑:Image Analyst
2014-2-21
I'm not sure what the middle sentence means, but your final sentence that says you can always use /, and never use \, regardless of platform/OS is correct.
jim bob
2020-3-2
Sometimes a function (such as unzip) will return filenames in the format appropriate for the platform you are using so you may need to convert from one system to another.
path_pc = '\path\to\folder';
%convert to a unix version:
path_unix = path_pc;
path_unix(strfind(path_unix,'\'))='/';
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!