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";
|
2018-10-03 21:41:59 -04:00
|
|
|
import { FileInfo, FileInfoImpl } from "./file_info";
|
2019-08-26 10:18:42 -04:00
|
|
|
import { StatResponse } from "./stat";
|
2018-10-03 17:56:56 -04:00
|
|
|
|
2019-08-26 10:18:42 -04:00
|
|
|
interface ReadDirResponse {
|
|
|
|
entries: StatResponse[];
|
2018-10-03 17:56:56 -04:00
|
|
|
}
|
|
|
|
|
2019-08-26 10:18:42 -04:00
|
|
|
function res(response: ReadDirResponse): FileInfo[] {
|
|
|
|
return response.entries.map(
|
|
|
|
(statRes: StatResponse): FileInfo => {
|
|
|
|
return new FileInfoImpl(statRes);
|
|
|
|
}
|
|
|
|
);
|
2018-10-03 17:56:56 -04:00
|
|
|
}
|
2019-03-09 12:30:38 -05:00
|
|
|
|
|
|
|
/** Reads the directory given by path and returns a list of file info
|
|
|
|
* synchronously.
|
|
|
|
*
|
|
|
|
* const files = Deno.readDirSync("/");
|
|
|
|
*/
|
|
|
|
export function readDirSync(path: string): FileInfo[] {
|
2019-08-26 10:18:42 -04:00
|
|
|
return res(sendSync(dispatch.OP_READ_DIR, { path }));
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Reads the directory given by path and returns a list of file info.
|
|
|
|
*
|
|
|
|
* const files = await Deno.readDir("/");
|
|
|
|
*/
|
|
|
|
export async function readDir(path: string): Promise<FileInfo[]> {
|
2019-08-26 10:18:42 -04:00
|
|
|
return res(await sendAsync(dispatch.OP_READ_DIR, { path }));
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|