Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.symlink

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 full allow-read and allow-write permissions.

function symlink(
oldpath: string | URL,
newpath: string | URL,
options?: SymlinkOptions,
): Promise<void>;
§
symlink(oldpath: string | URL, newpath: string | URL, options?: SymlinkOptions): Promise<void>
[src]

§Parameters

§
oldpath: string | URL
[src]
§
newpath: string | URL
[src]
§
options?: SymlinkOptions optional
[src]

§Return Type

§
Promise<void>
[src]