1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-19 04:16:00 -05:00
denoland-deno/js/dir.ts

23 lines
725 B
TypeScript
Raw Normal View History

2019-01-22 04:03:30 +09:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { sendSync } from "./dispatch_json.ts";
import * as dispatch from "./dispatch.ts";
2018-10-14 01:33:27 +05:30
/**
2019-04-03 20:53:54 +08:00
* `cwd()` Return a string representing the current working directory.
2018-10-14 01:33:27 +05:30
* If the current directory can be reached via multiple paths
2019-04-03 20:53:54 +08:00
* (due to symbolic links), `cwd()` may return
2018-10-14 01:33:27 +05:30
* any one of them.
2019-04-03 20:53:54 +08:00
* throws `NotFound` exception if directory not available
2018-10-14 01:33:27 +05:30
*/
export function cwd(): string {
2019-08-26 16:18:42 +02:00
return sendSync(dispatch.OP_CWD);
2018-10-14 01:33:27 +05:30
}
/**
2019-04-03 20:53:54 +08:00
* `chdir()` Change the current working directory to path.
* throws `NotFound` exception if directory not available
2018-10-14 01:33:27 +05:30
*/
export function chdir(directory: string): void {
2019-08-26 16:18:42 +02:00
sendSync(dispatch.OP_CHDIR, { directory });
2018-10-14 01:33:27 +05:30
}