2019-01-01 19:58:40 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import { sendSync, sendAsync } from "./dispatch_json.ts";
|
|
|
|
import * as dispatch from "./dispatch.ts";
|
2019-03-09 12:30:38 -05:00
|
|
|
|
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.
|
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* 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.
|
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* 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
|
|
|
}
|