2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-08 08:09:22 -04:00
|
|
|
import { sendSync, sendAsync } from "./ops/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. */
|
2020-03-06 11:29:23 -05:00
|
|
|
export function readlinkSync(path: string): string {
|
|
|
|
return sendSync("op_read_link", { path });
|
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. */
|
2020-03-06 11:29:23 -05:00
|
|
|
export async function readlink(path: string): Promise<string> {
|
|
|
|
return await sendAsync("op_read_link", { path });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|