copy(): Promise<void>
Asynchronously copy a file or directory (along with its contents), like
cp -r.
Both src and dest must both be a file or directory.
Requires --allow-read and --allow-write permissions.
Basic usage
Basic usage
import { copy } from "@std/fs/copy"; await copy("./foo", "./bar");
This will copy the file or directory at ./foo to ./bar without
overwriting.
optional
options: CopyOptions
Options for copying.
Promise<void>
A promise that resolves once the copy operation completes.
https://docs.deno.com/runtime/manual/basics/permissions#file-system-access for more information on Deno's permissions system.