2019-01-22 04:03:30 +09: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-10 04:30:38 +11:00
|
|
|
|
2018-10-15 07:29:50 +11: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 08:44:58 -07:00
|
|
|
*
|
2019-02-13 02:08:56 +11:00
|
|
|
* Deno.renameSync("old/path", "new/path");
|
2018-09-12 08:44:58 -07:00
|
|
|
*/
|
|
|
|
export function renameSync(oldpath: string, newpath: string): void {
|
2019-08-26 16:18:42 +02:00
|
|
|
sendSync(dispatch.OP_RENAME, { oldpath, newpath });
|
2018-09-12 08:44:58 -07:00
|
|
|
}
|
|
|
|
|
2018-10-15 07:29:50 +11: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 08:44:58 -07:00
|
|
|
*
|
2019-02-13 02:08:56 +11:00
|
|
|
* await Deno.rename("old/path", "new/path");
|
2018-09-12 08:44:58 -07:00
|
|
|
*/
|
|
|
|
export async function rename(oldpath: string, newpath: string): Promise<void> {
|
2019-08-26 16:18:42 +02:00
|
|
|
await sendAsync(dispatch.OP_RENAME, { oldpath, newpath });
|
2018-09-12 08:44:58 -07:00
|
|
|
}
|