1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/js/copy_file.ts

31 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync, sendAsync } from "./dispatch_json.ts";
import * as dispatch from "./dispatch.ts";
2018-10-14 16:29:50 -04:00
/** Copies the contents of a file to another by name synchronously.
2018-09-30 18:06:41 -04:00
* Creates a new file if target does not exists, and if target exists,
* overwrites original content of the target file.
2018-10-14 16:29:50 -04:00
*
2018-09-30 18:06:41 -04:00
* It would also copy the permission of the original file
* to the destination.
*
* Deno.copyFileSync("from.txt", "to.txt");
2018-09-30 18:06:41 -04:00
*/
export function copyFileSync(from: string, to: string): void {
2019-08-26 10:18:42 -04:00
sendSync(dispatch.OP_COPY_FILE, { from, to });
2018-09-30 18:06:41 -04:00
}
2018-10-14 16:29:50 -04:00
/** Copies the contents of a file to another by name.
*
2018-09-30 18:06:41 -04:00
* Creates a new file if target does not exists, and if target exists,
* overwrites original content of the target file.
2018-10-14 16:29:50 -04:00
*
2018-09-30 18:06:41 -04:00
* It would also copy the permission of the original file
* to the destination.
*
* await Deno.copyFile("from.txt", "to.txt");
2018-09-30 18:06:41 -04:00
*/
export async function copyFile(from: string, to: string): Promise<void> {
2019-08-26 10:18:42 -04:00
await sendAsync(dispatch.OP_COPY_FILE, { from, to });
2018-09-30 18:06:41 -04:00
}