summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_copy.ts
blob: 21d05a7feb31cb7de19c9ca91eafe8a7c9b8572d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import type { CallbackWithError } from "./_fs_common.ts";
import { fromFileUrl } from "../path.ts";

export function copyFile(
  source: string | URL,
  destination: string,
  callback: CallbackWithError,
): void {
  source = source instanceof URL ? fromFileUrl(source) : source;

  Deno.copyFile(source, destination)
    .then(() => callback())
    .catch(callback);
}

export function copyFileSync(source: string | URL, destination: string): void {
  source = source instanceof URL ? fromFileUrl(source) : source;
  Deno.copyFileSync(source, destination);
}