Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

copy_dir

import { copy_dir } from "https://raw.githubusercontent.com/olaven/dio/master/mod.ts";

Copies a the content of the options.source into options.destination.

options.destination is created if it does not exist.

async function copy_dir(options: {
source: string;
destination: string;
}
);
§
copy_dir(options: {
source: string;
destination: string;
}
)
[src]

§Parameters

§
options: {
source: string;
destination: string;
}
[src]