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, sendAsync } from "./dispatch_json";
|
|
|
|
import * as dispatch from "./dispatch";
|
2019-03-09 12:30:38 -05:00
|
|
|
|
|
|
|
/** Returns the destination of the named symbolic link synchronously.
|
|
|
|
*
|
|
|
|
* const targetPath = Deno.readlinkSync("symlink/path");
|
|
|
|
*/
|
|
|
|
export function readlinkSync(name: string): string {
|
2019-08-26 10:18:42 -04:00
|
|
|
return sendSync(dispatch.OP_READ_LINK, { name });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the destination of the named symbolic link.
|
|
|
|
*
|
|
|
|
* const targetPath = await Deno.readlink("symlink/path");
|
|
|
|
*/
|
|
|
|
export async function readlink(name: string): Promise<string> {
|
2019-08-26 10:18:42 -04:00
|
|
|
return await sendAsync(dispatch.OP_READ_LINK, { name });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|