UNPKG

abi.js

Version:

[![typescript-icon]][typescript-link] [![license-icon]][license-link] [![status-icon]][status-link] [![ci-icon]][ci-link] [![twitter-icon]][twitter-link]

252 lines (251 loc) 8.79 kB
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /** Options for {@linkcode exists} and {@linkcode existsSync.} */ import * as dntShim from "../../../../../_dnt.shims.js"; /** * Asynchronously test whether or not the given path exists by checking with * the file system. * * Note: Do not use this function if performing a check before another operation * on that file. Doing so creates a race condition. Instead, perform the actual * file operation directly. This function is not recommended for this use case. * See the recommended method below. * * @see {@link https://en.wikipedia.org/wiki/Time-of-check_to_time-of-use} for * more information on the time-of-check to time-of-use bug. * * Requires `--allow-read` and `--allow-sys` permissions. * * @see {@link https://docs.deno.com/runtime/manual/basics/permissions#file-system-access} * for more information on Deno's permissions system. * * @param path The path to the file or directory, as a string or URL. * @param options Additional options for the check. * * @returns A promise that resolves with `true` if the path exists, `false` * otherwise. * * @example Recommended method * ```ts no-eval * // Notice no use of exists * try { * await Deno.remove("./foo", { recursive: true }); * } catch (error) { * if (!(error instanceof Deno.errors.NotFound)) { * throw error; * } * // Do nothing... * } * ``` * * Notice that `exists()` is not used in the above example. Doing so avoids a * possible race condition. See the above note for details. * * @example Basic usage * ```ts no-eval * import { exists } from "@std/fs/exists"; * * await exists("./exists"); // true * await exists("./does_not_exist"); // false * ``` * * @example Check if a path is readable * ```ts no-eval * import { exists } from "@std/fs/exists"; * * await exists("./readable", { isReadable: true }); // true * await exists("./not_readable", { isReadable: true }); // false * ``` * * @example Check if a path is a directory * ```ts no-eval * import { exists } from "@std/fs/exists"; * * await exists("./directory", { isDirectory: true }); // true * await exists("./file", { isDirectory: true }); // false * ``` * * @example Check if a path is a file * ```ts no-eval * import { exists } from "@std/fs/exists"; * * await exists("./file", { isFile: true }); // true * await exists("./directory", { isFile: true }); // false * ``` * * @example Check if a path is a readable directory * ```ts no-eval * import { exists } from "@std/fs/exists"; * * await exists("./readable_directory", { isReadable: true, isDirectory: true }); // true * await exists("./not_readable_directory", { isReadable: true, isDirectory: true }); // false * ``` * * @example Check if a path is a readable file * ```ts no-eval * import { exists } from "@std/fs/exists"; * * await exists("./readable_file", { isReadable: true, isFile: true }); // true * await exists("./not_readable_file", { isReadable: true, isFile: true }); // false * ``` */ export async function exists(path, options) { try { const stat = await dntShim.Deno.stat(path); if (options && (options.isReadable || options.isDirectory || options.isFile)) { if (options.isDirectory && options.isFile) { throw new TypeError("ExistsOptions.options.isDirectory and ExistsOptions.options.isFile must not be true together."); } if ((options.isDirectory && !stat.isDirectory) || (options.isFile && !stat.isFile)) { return false; } if (options.isReadable) { return fileIsReadable(stat); } } return true; } catch (error) { if (error instanceof dntShim.Deno.errors.NotFound) { return false; } if (error instanceof dntShim.Deno.errors.PermissionDenied) { if ((await dntShim.Deno.permissions.query({ name: "read", path })).state === "granted") { // --allow-read not missing return !options?.isReadable; // PermissionDenied was raised by file system, so the item exists, but can't be read } } throw error; } } /** * Synchronously test whether or not the given path exists by checking with * the file system. * * Note: Do not use this function if performing a check before another operation * on that file. Doing so creates a race condition. Instead, perform the actual * file operation directly. This function is not recommended for this use case. * See the recommended method below. * * @see {@link https://en.wikipedia.org/wiki/Time-of-check_to_time-of-use} for * more information on the time-of-check to time-of-use bug. * * Requires `--allow-read` and `--allow-sys` permissions. * * @see {@link https://docs.deno.com/runtime/manual/basics/permissions#file-system-access} * for more information on Deno's permissions system. * * @param path The path to the file or directory, as a string or URL. * @param options Additional options for the check. * * @returns `true` if the path exists, `false` otherwise. * * @example Recommended method * ```ts no-eval * // Notice no use of exists * try { * Deno.removeSync("./foo", { recursive: true }); * } catch (error) { * if (!(error instanceof Deno.errors.NotFound)) { * throw error; * } * // Do nothing... * } * ``` * * Notice that `existsSync()` is not used in the above example. Doing so avoids * a possible race condition. See the above note for details. * * @example Basic usage * ```ts no-eval * import { existsSync } from "@std/fs/exists"; * * existsSync("./exists"); // true * existsSync("./does_not_exist"); // false * ``` * * @example Check if a path is readable * ```ts no-eval * import { existsSync } from "@std/fs/exists"; * * existsSync("./readable", { isReadable: true }); // true * existsSync("./not_readable", { isReadable: true }); // false * ``` * * @example Check if a path is a directory * ```ts no-eval * import { existsSync } from "@std/fs/exists"; * * existsSync("./directory", { isDirectory: true }); // true * existsSync("./file", { isDirectory: true }); // false * ``` * * @example Check if a path is a file * ```ts no-eval * import { existsSync } from "@std/fs/exists"; * * existsSync("./file", { isFile: true }); // true * existsSync("./directory", { isFile: true }); // false * ``` * * @example Check if a path is a readable directory * ```ts no-eval * import { existsSync } from "@std/fs/exists"; * * existsSync("./readable_directory", { isReadable: true, isDirectory: true }); // true * existsSync("./not_readable_directory", { isReadable: true, isDirectory: true }); // false * ``` * * @example Check if a path is a readable file * ```ts no-eval * import { existsSync } from "@std/fs/exists"; * * existsSync("./readable_file", { isReadable: true, isFile: true }); // true * existsSync("./not_readable_file", { isReadable: true, isFile: true }); // false * ``` */ export function existsSync(path, options) { try { const stat = dntShim.Deno.statSync(path); if (options && (options.isReadable || options.isDirectory || options.isFile)) { if (options.isDirectory && options.isFile) { throw new TypeError("ExistsOptions.options.isDirectory and ExistsOptions.options.isFile must not be true together."); } if ((options.isDirectory && !stat.isDirectory) || (options.isFile && !stat.isFile)) { return false; } if (options.isReadable) { return fileIsReadable(stat); } } return true; } catch (error) { if (error instanceof dntShim.Deno.errors.NotFound) { return false; } if (error instanceof dntShim.Deno.errors.PermissionDenied) { if (dntShim.Deno.permissions.querySync({ name: "read", path }).state === "granted") { // --allow-read not missing return !options?.isReadable; // PermissionDenied was raised by file system, so the item exists, but can't be read } } throw error; } } function fileIsReadable(stat) { if (stat.mode === null) { return true; // Exclusive on Non-POSIX systems } else if (dntShim.Deno.uid() === stat.uid) { return (stat.mode & 0o400) === 0o400; // User is owner and can read? } else if (dntShim.Deno.gid() === stat.gid) { return (stat.mode & 0o040) === 0o040; // User group is owner and can read? } return (stat.mode & 0o004) === 0o004; // Others can read? }