Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/tsc/dts/lib.deno.ns.d.ts>Deno.symlinkSync

A modern runtime for JavaScript and TypeScript.
Latest
function Deno.symlinkSync
allow-read
allow-write
import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { symlinkSync } = 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.

Deno.symlinkSync("old/name", "new/name");

Requires full allow-read and allow-write permissions.

Parameters

oldpath: string | URL
newpath: string | URL
optional
options: SymlinkOptions