Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/gustwind/server-deps.ts>fs.copy

🐳💨 – Deno powered JSON oriented site generator
Go to Latest
function fs.copy
import { fs } from "https://deno.land/x/gustwind@v0.38.0/server-deps.ts";
const { copy } = fs;

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

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]