We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 025a133 commit d393049Copy full SHA for d393049
+stdlib/create_symlink.m
@@ -26,8 +26,12 @@
26
% Matlab Java doesn't recognize the optional argument omitted.
27
% see example/Filesystem.java for this working in plain Java.
28
% see example/javaCreateSymbolicLink.m for a non-working attempt in Matlab.
29
- warning(e.identifier, "buildtool mex \n%s", e.message)
30
- ok = false;
+ if stdlib.has_dotnet()
+ System.IO.File.CreateSymbolicLink(link, target);
31
+ ok = true;
32
+ else
33
+ ok = false;
34
+ end
35
case "Octave:undefined-function"
36
err = symlink(target, link);
37
ok = err == 0;
0 commit comments