deno.land / std@0.166.0 / node / _fs / _fs_symlink.ts

_fs_symlink.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { CallbackWithError } from "./_fs_common.ts";import { fromFileUrl } from "../path.ts";import { promisify } from "../internal/util.mjs";
type SymlinkType = "file" | "dir";
export function symlink( target: string | URL, path: string | URL, typeOrCallback: SymlinkType | CallbackWithError, maybeCallback?: CallbackWithError,) { target = target instanceof URL ? fromFileUrl(target) : target; path = path instanceof URL ? fromFileUrl(path) : path;
const type: SymlinkType = typeof typeOrCallback === "string" ? typeOrCallback : "file";
const callback: CallbackWithError = typeof typeOrCallback === "function" ? typeOrCallback : (maybeCallback as CallbackWithError);
if (!callback) throw new Error("No callback function supplied");
Deno.symlink(target, path, { type }).then(() => callback(null), callback);}
export const symlinkPromise = promisify(symlink) as ( target: string | URL, path: string | URL, type?: SymlinkType,) => Promise<void>;
export function symlinkSync( target: string | URL, path: string | URL, type?: SymlinkType,) { target = target instanceof URL ? fromFileUrl(target) : target; path = path instanceof URL ? fromFileUrl(path) : path; type = type || "file";
Deno.symlinkSync(target, path, { type });}
std

Version Info

Tagged at
a year ago