CREATE_SYMLINK create symbolic link

optional: mex

Contents

Inputs

Outputs

function ok = create_symlink(target, link)
arguments
  target (1,1) string
  link (1,1) string
end


try
  createSymbolicLink(link, target);
  ok = true;
catch e
  switch e.identifier
    case {"MATLAB:io:filesystem:symlink:NeedsAdminPerms", "MATLAB:UndefinedFunction"}
    % windows requires RunAsAdmin
    % https://www.mathworks.com/help/releases/R2024b/matlab/ref/createsymboliclink.html
    % ok = java.nio.file.Files.createSymbolicLink(java.io.File(link).toPath(), java.io.File(target).toPath());
    % Matlab Java doesn't recognize the optional argument omitted.
    % see example/Filesystem.java for this working in plain Java.
    % see example/javaCreateSymbolicLink.m for a non-working attempt in Matlab.
      warning(e.identifier, "buildtool mex  \n%s", e.message)
      ok = false;
    case "Octave:undefined-function"
      err = symlink(target, link);
      ok = err == 0;
    otherwise
      warning(e.identifier, "%s", e.message)
      ok = false;
  end
end

end

%!assert (create_symlink("https://invalid", "https://invalid"), false)
%!test
%! if !ispc
%!   assert(create_symlink(tempname, tempname))
%! endif