function copyimport { copy } from "https://dotland.deno.dev/std@0.119.0/fs/copy.ts"; copy(src: string,dest: string,options?: CopyOptions,)Copy a file or directory. The directory can have contents. Like cp -r. Requires the --allow-read and --allow-write flag. Copy a file or directory. The directory can have contents. Like cp -r. Requires the --allow-read and --allow-write flag. Parameterssrc: stringthe file/directory path. Note that if src is a directory it will copy everything inside of this directory, not the entire directory itself dest: stringthe destination path. Note that if src is a file, dest cannot be a directory optionaloptions: CopyOptions = [UNSUPPORTED]