import { default } from "https://deno.land/std@0.104.0/node/_fs/_fs_dir.ts";
Properties
private
asyncIterator: AsyncIterator<Deno.DirEntry> | nullprivate
syncIterator: Iterator<Deno.DirEntry> | nullMethods
close(callback?: (...args: any[]) => void): Promise<void>
Unlike Node, Deno does not require managing resource ids for reading directories, and therefore does not need to close directories when finished reading.
closeSync(): void
Unlike Node, Deno does not require managing resource ids for reading directories, and therefore does not need to close directories when finished reading
[Symbol.asyncIterator](): AsyncIterableIterator<Dirent>