import { fs } from "https://deno.land/x/fresh@1.5.3/src/dev/deps.ts";
const { copySync } = fs;
Copy a file or directory. The directory can have contents. Like cp -r
.
Requires the --allow-read
and --allow-write
flag.
Examples
Example 1
Example 1
import { copySync } from "https://deno.land/std@0.224.0/fs/copy.ts";
copySync("./foo", "./bar"); // void