Skip to main content
Module

std/node/_fs/_fs_dir.ts>default

Deno standard library
Go to Latest
class default
import { default } from "https://deno.land/std@0.147.0/node/_fs/_fs_dir.ts";

Constructors

new
default(path: string | Uint8Array)

Properties

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>