1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-03 17:08:35 -05:00
denoland-deno/cli/js/ops/fs/read_dir.ts

35 lines
873 B
TypeScript
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
2020-07-06 21:45:39 -04:00
import { sendSync, sendAsync } from "../dispatch_json.ts";
import { pathFromURL } from "../../util.ts";
export interface DirEntry {
name: string;
isFile: boolean;
isDirectory: boolean;
isSymlink: boolean;
}
2018-10-03 17:56:56 -04:00
2019-08-26 10:18:42 -04:00
interface ReadDirResponse {
entries: DirEntry[];
2018-10-03 17:56:56 -04:00
}
function res(response: ReadDirResponse): DirEntry[] {
return response.entries;
2018-10-03 17:56:56 -04:00
}
export function readDirSync(path: string | URL): Iterable<DirEntry> {
2020-07-06 21:45:39 -04:00
return res(sendSync("op_read_dir", { path: pathFromURL(path) }))[
Symbol.iterator
]();
}
export function readDir(path: string | URL): AsyncIterable<DirEntry> {
2020-07-06 21:45:39 -04:00
const array = sendAsync("op_read_dir", { path: pathFromURL(path) }).then(res);
return {
async *[Symbol.asyncIterator](): AsyncIterableIterator<DirEntry> {
yield* await array;
},
};
}