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

25 lines
1,023 B
TypeScript
Raw Normal View History

2019-01-21 14:03:30 -05:00
// Copyright 2018-2019 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
/** Synchronously renames (moves) `oldpath` to `newpath`. If `newpath` already
* exists and is not a directory, `renameSync()` replaces it. OS-specific
* restrictions may apply when `oldpath` and `newpath` are in different
* directories.
2018-09-12 11:44:58 -04:00
*
* Deno.renameSync("old/path", "new/path");
2018-09-12 11:44:58 -04:00
*/
export function renameSync(oldpath: string, newpath: string): void {
2019-08-26 10:18:42 -04:00
sendSync(dispatch.OP_RENAME, { oldpath, newpath });
2018-09-12 11:44:58 -04:00
}
2018-10-14 16:29:50 -04:00
/** Renames (moves) `oldpath` to `newpath`. If `newpath` already exists and is
* not a directory, `rename()` replaces it. OS-specific restrictions may apply
* when `oldpath` and `newpath` are in different directories.
2018-09-12 11:44:58 -04:00
*
* await Deno.rename("old/path", "new/path");
2018-09-12 11:44:58 -04:00
*/
export async function rename(oldpath: string, newpath: string): Promise<void> {
2019-08-26 10:18:42 -04:00
await sendAsync(dispatch.OP_RENAME, { oldpath, newpath });
2018-09-12 11:44:58 -04:00
}