import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { symlink } = Deno;
Creates newpath
as a symbolic link to oldpath
.
The options.type
parameter can be set to "file"
, "dir"
or "junction"
.
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.