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 } from "./dispatch_json";
|
|
|
|
import * as dispatch from "./dispatch";
|
2018-10-13 16:03:27 -04:00
|
|
|
|
|
|
|
/**
|
2019-04-03 08:53:54 -04:00
|
|
|
* `cwd()` Return a string representing the current working directory.
|
2018-10-13 16:03:27 -04:00
|
|
|
* If the current directory can be reached via multiple paths
|
2019-04-03 08:53:54 -04:00
|
|
|
* (due to symbolic links), `cwd()` may return
|
2018-10-13 16:03:27 -04:00
|
|
|
* any one of them.
|
2019-04-03 08:53:54 -04:00
|
|
|
* throws `NotFound` exception if directory not available
|
2018-10-13 16:03:27 -04:00
|
|
|
*/
|
|
|
|
export function cwd(): string {
|
2019-08-26 10:18:42 -04:00
|
|
|
return sendSync(dispatch.OP_CWD);
|
2018-10-13 16:03:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-03 08:53:54 -04:00
|
|
|
* `chdir()` Change the current working directory to path.
|
|
|
|
* throws `NotFound` exception if directory not available
|
2018-10-13 16:03:27 -04:00
|
|
|
*/
|
|
|
|
export function chdir(directory: string): void {
|
2019-08-26 10:18:42 -04:00
|
|
|
sendSync(dispatch.OP_CHDIR, { directory });
|
2018-10-13 16:03:27 -04:00
|
|
|
}
|