function copySync
copySync(): voidCopy 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 "@std/fs/copy"; copySync("./foo", "./bar"); // void
Parameters
the file/directory path.
Note that if src is a directory it will copy everything inside
of this directory, not the entire directory itself
optional
options: CopyOptionsReturn Type
void