2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import { sendSync, sendAsync } from "./dispatch_json.ts";
|
2019-03-09 12:30:38 -05:00
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Returns the destination of the named symbolic link.
|
2019-03-09 12:30:38 -05:00
|
|
|
*
|
|
|
|
* const targetPath = Deno.readlinkSync("symlink/path");
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-read` permission. */
|
2019-03-09 12:30:38 -05:00
|
|
|
export function readlinkSync(name: string): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
return sendSync("op_read_link", { name });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Resolves to the destination of the named symbolic link.
|
2019-03-09 12:30:38 -05:00
|
|
|
*
|
|
|
|
* const targetPath = await Deno.readlink("symlink/path");
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-read` permission. */
|
2019-03-09 12:30:38 -05:00
|
|
|
export async function readlink(name: string): Promise<string> {
|
2020-02-25 09:14:27 -05:00
|
|
|
return await sendAsync("op_read_link", { name });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|