Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/dts/lib.deno.ns.d.ts>Deno.DirEntry

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Deno.DirEntry
import { type Deno } from "https://deno.land/x/deno@v1.28.1/cli/dts/lib.deno.ns.d.ts";
const { DirEntry } = Deno;

Information about a directory entry returned from Deno.readDir and Deno.readDirSync.

Properties

name: string

The file name of the entry. It is just the entity name and does not include the full path.

isFile: boolean

True if this is info for a regular file. Mutually exclusive to DirEntry.isDirectory and DirEntry.isSymlink.

isDirectory: boolean

True if this is info for a regular directory. Mutually exclusive to DirEntry.isFile and DirEntry.isSymlink.