deno/ext/node/polyfills/_fs/_fs_link.ts
David Sherret b1a510ce54
Some checks are pending
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
fix(node): regression where Node fs APIs required elevated permissions on Windows (#30535)
Closes https://github.com/denoland/deno/issues/30534
2025-08-27 09:29:44 -04:00

39 lines
1.1 KiB
TypeScript

// Copyright 2018-2025 the Deno authors. MIT license.
import type { Buffer } from "node:buffer";
import type { CallbackWithError } from "ext:deno_node/_fs/_fs_common.ts";
import { promisify } from "ext:deno_node/internal/util.mjs";
import { primordials } from "ext:core/mod.js";
import { getValidatedPathToString } from "ext:deno_node/internal/fs/utils.mjs";
const { PromisePrototypeThen } = primordials;
export function link(
existingPath: string | Buffer | URL,
newPath: string | Buffer | URL,
callback: CallbackWithError,
) {
existingPath = getValidatedPathToString(existingPath);
newPath = getValidatedPathToString(newPath);
PromisePrototypeThen(
Deno.link(existingPath, newPath),
() => callback(null),
callback,
);
}
export const linkPromise = promisify(link) as (
existingPath: string | Buffer | URL,
newPath: string | Buffer | URL,
) => Promise<void>;
export function linkSync(
existingPath: string | Buffer | URL,
newPath: string | Buffer | URL,
) {
existingPath = getValidatedPathToString(existingPath);
newPath = getValidatedPathToString(newPath);
Deno.linkSync(existingPath, newPath);
}