W3cubDocs

/Deno

Deno.symlinkSync

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.

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

Requires full allow-read and allow-write permissions.

function symlinkSync(
oldpath: string | URL,
newpath: string | URL,
options?: SymlinkOptions,
): void;
symlinkSync(oldpath: string | URL, newpath: string | URL, options?: SymlinkOptions): void

Parameters

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

Return Type

void