Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ogone/deps/fs.ts>copy

Advanced Web Composition for Future
Latest
function copy
import { copy } from "https://deno.land/x/ogone@revb3/deps/fs.ts";

Copy a file or directory. The directory can have contents. Like cp -r. Requires the --allow-read and --allow-write flag.

Parameters

src: string

the file/directory path. Note that if src is a directory it will copy everything inside of this directory, not the entire directory itself

dest: string

the destination path. Note that if src is a file, dest cannot be a directory

optional
options: CopyOptions = [UNSUPPORTED]

Returns

Promise<void>