Skip to main content

symlinkSync

function Deno.symlinkSync
allow-read
allow-write
Jump to headingsymlinkSync(
oldpath: string | URL,
newpath: string | URL,
options?: SymlinkOptions,
): void

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 Jump to heading

Jump to headingoldpath: string | URL
Jump to headingnewpath: string | URL

Return Type Jump to heading

void
Back to top