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