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

x/rad/src/3p/std.ts>fs.copySync

general purpose build tool. statically typed, batteries included. command, function, and make-style tasks supported. improved npm scripts for deno.
Latest
function fs.copySync
import { fs } from "https://deno.land/x/rad@v6.10.0/src/3p/std.ts";
const { copySync } = 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

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]