interface Deno.DirEntry
Information about a directory entry returned from Deno.readDir
and Deno.readDirSync
.
Properties Jump to heading
Jump to headingname: string
The file name of the entry. It is just the entity name and does not include the full path.
Jump to headingisFile: boolean
True if this is info for a regular file. Mutually exclusive to
DirEntry.isDirectory
and DirEntry.isSymlink
.
Jump to headingisDirectory: boolean
True if this is info for a regular directory. Mutually exclusive to
DirEntry.isFile
and DirEntry.isSymlink
.
Jump to headingisSymlink: boolean
True if this is info for a symlink. Mutually exclusive to
DirEntry.isFile
and DirEntry.isDirectory
.