import { symlink } from "https://deno.land/x/deno@v0.28.0/cli/js/deno.ts";
Creates newname
as a symbolic link to oldname
. The type argument can be
set to dir
or file
and is only available on Windows (ignored on other
platforms).
await Deno.symlink("old/name", "new/name");