Skip to main content
Module

std/node/fs.ts>Dir

Deno standard library
Go to Latest
class Dir
Re-export
import { Dir } from "https://deno.land/std@0.139.0/node/fs.ts";

Constructors

new
Dir(path: string | Uint8Array)

Properties

private
asyncIterator: AsyncIterator<Deno.DirEntry> | null
private
dirPath: string | Uint8Array
private
syncIterator: Iterator<Deno.DirEntry> | null
readonly
path: string

Methods

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

read(callback?: (...args: any[]) => void): Promise<Dirent | null>
readSync(): Dirent | null
[Symbol.asyncIterator](): AsyncIterableIterator<Dirent>