UNPKG

abi.js

Version:

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

30 lines (29 loc) 762 B
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /** * Helpers for working with the filesystem. * * ```ts no-eval * import { ensureFile, copy, ensureDir, move } from "@std/fs"; * * await ensureFile("example.txt"); * * await copy("example.txt", "example_copy.txt"); * * await ensureDir("subdir"); * * await move("example_copy.txt", "subdir/example_copy.txt"); * ``` * * @module */ export * from "./empty_dir.js"; export * from "./ensure_dir.js"; export * from "./ensure_file.js"; export * from "./ensure_link.js"; export * from "./ensure_symlink.js"; export * from "./exists.js"; export * from "./expand_glob.js"; export * from "./move.js"; export * from "./copy.js"; export * from "./walk.js"; export * from "./eol.js";