Skip to main content
Module

x/lume/deps/fs.ts>copySync

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
function copySync
import { copySync } from "https://deno.land/x/lume@v1.15.2/deps/fs.ts";

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

Examples

Example 1

import { copySync } from "https://deno.land/std@0.224.0/fs/copy.ts";
copySync("./foo", "./bar"); // void

Parameters

src: string | URL

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 | URL

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

optional
options: CopyOptions = [UNSUPPORTED]