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

36 lines
1.2 KiB
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 * as msg from "gen/cli/msg_generated";
2018-10-13 16:03:27 -04:00
import { assert } from "./util";
import * as flatbuffers from "./flatbuffers";
2018-10-13 16:03:27 -04:00
import { sendSync } from "./dispatch";
/**
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 {
const builder = flatbuffers.createBuilder();
2018-10-13 16:03:27 -04:00
msg.Cwd.startCwd(builder);
const inner = msg.Cwd.endCwd(builder);
const baseRes = sendSync(builder, msg.Any.Cwd, inner);
assert(baseRes != null);
assert(msg.Any.CwdRes === baseRes!.innerType());
const res = new msg.CwdRes();
assert(baseRes!.inner(res) != null);
return res.cwd()!;
}
/**
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 {
const builder = flatbuffers.createBuilder();
2018-10-13 16:03:27 -04:00
const directory_ = builder.createString(directory);
const inner = msg.Chdir.createChdir(builder, directory_);
2018-10-13 16:03:27 -04:00
sendSync(builder, msg.Any.Chdir, inner);
}