import { Deno } from "https://deno.land/x/xdg@v10.5.1/vendor/types/deno.d.ts";
const { symlink } = Deno;
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 allow-write
permission.