Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/entsoe_api_client/scripts/deps.ts>copy

ENTSO-e transparency platform API Client built for Deno. Complete. Easy to use. Minimal.
Latest
function copy
import { copy } from "https://deno.land/x/entsoe_api_client@1.0.1/scripts/deps.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 { copy } from "https://deno.land/std@0.224.0/fs/copy.ts";
copy("./foo", "./bar"); // returns a promise

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]