symlink method
Creates newpath
as a symbolic link to oldpath
.
The options.type
parameter can be set to "file"
or "dir"
. This
argument is only available on Windows and ignored on other platforms.
await Deno.symlink("old/name", "new/name");
Requires full allow-read
and allow-write
permissions.
Implementation
_i2.Future<void> symlink(
_i2.Object oldpath,
_i2.Object newpath, [
_i4.SymlinkOptions? options,
]) =>
_i3.promiseToFuture(_i3.callMethod(
this,
'symlink',
[
oldpath,
newpath,
options ?? _i6.undefined,
],
));