Path.symlinkTo
void symlinkTo(string target) constCreate a symbolic link at this path pointing to the given target.
On POSIX, this uses the symlink() syscall. On Windows, uses std.file.symlink.
Parameters
target | The path to the file or directory to link to (source). |
Throws
Exception on failure.