// Copyright 2018-2025 the Deno authors. MIT license.
import { getNodeFs, isDeno } from "./_utils.ts";
import { mapError } from "./_map_error.ts";
/**
* Resolves to the path destination of the named symbolic link.
*
* Throws Error if called with a hard link.
*
* Requires `allow-read` permission.
*
* @example Usage
* ```ts ignore
* import { readLink } from "@std/fs/unstable-read-link";
* import { symlink } from "@std/fs/unstable-symlink";
* await symlink("./test.txt", "./test_link.txt");
* const target = await readLink("./test_link.txt"); // full path of ./test.txt
* ```
*
* @tags allow-read
*
* @param path The path of the symbolic link.
* @returns A promise that resolves to the file path pointed by the symbolic
* link.
*/
export async function readLink(path: string | URL): Promise<string> {
if (isDeno) {
return Deno.readLink(path);
} else {
try {
return await getNodeFs().promises.readlink(path);
} catch (error) {
throw mapError(error);
}
}
}
/**
* Synchronously returns the path destination of the named symbolic link.
*
* Throws Error if called with a hard link.
*
* Requires `allow-read` permission.
*
* @example Usage
* ```ts ignore
* import { readLinkSync } from "@std/fs/unstable-read-link";
* import { symlinkSync } from "@std/fs/unstable-symlink";
* symlinkSync("./test.txt", "./test_link.txt");
* const target = readLinkSync("./test_link.txt"); // full path of ./test.txt
* ```
*
* @tags allow-read
*
* @param path The path of the symbolic link.
* @returns The file path pointed by the symbolic link.
*/
export function readLinkSync(path: string | URL): string {
if (isDeno) {
return Deno.readLinkSync(path);
} else {
try {
return getNodeFs().readlinkSync(path);
} catch (error) {
throw mapError(error);
}
}
}
|