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

x/deno/std/fs/copy.ts>copy

A modern runtime for JavaScript and TypeScript.
Go to Latest
function copy
import { copy } from "https://deno.land/x/deno@v0.22.0/std/fs/copy.ts";

Copy a file or directory. The directory can have contents. Like cp -r.

Parameters

src: string

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

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

optional
options: CopyOptions = [UNSUPPORTED]

Returns

Promise<void>