Skip to main content
Module

x/netzo/deno.d.ts>Deno.symlinkSync

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function Deno.symlinkSync
allow-read
allow-write
import { Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { symlinkSync } = Deno;

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.

Parameters

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