mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
3e6ea62841
This change is to prevent needed a separate stat syscall for each file when using readdir. For consistency, this PR also modifies std's `WalkEntry` interface to extend `DirEntry` with an additional `path` field.
30 lines
769 B
TypeScript
30 lines
769 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
|
|
|
export interface DirEntry {
|
|
name: string;
|
|
isFile: boolean;
|
|
isDirectory: boolean;
|
|
isSymlink: boolean;
|
|
}
|
|
|
|
interface ReadDirResponse {
|
|
entries: DirEntry[];
|
|
}
|
|
|
|
function res(response: ReadDirResponse): DirEntry[] {
|
|
return response.entries;
|
|
}
|
|
|
|
export function readdirSync(path: string): Iterable<DirEntry> {
|
|
return res(sendSync("op_read_dir", { path }))[Symbol.iterator]();
|
|
}
|
|
|
|
export function readdir(path: string): AsyncIterable<DirEntry> {
|
|
const array = sendAsync("op_read_dir", { path }).then(res);
|
|
return {
|
|
async *[Symbol.asyncIterator](): AsyncIterableIterator<DirEntry> {
|
|
yield* await array;
|
|
},
|
|
};
|
|
}
|