DirEntry class

Information about a directory entry.

See https://deno.land/api@v1.30.3?s=Deno.DirEntry

Properties

hashCode int
The hash code for this object.
no setterinherited
isDirectory bool
True if this is info for a regular directory. Mutually exclusive to DirEntry.isFile and DirEntry.isSymlink.
no setter
isFile bool
True if this is info for a regular file. Mutually exclusive to DirEntry.isDirectory and DirEntry.isSymlink.
no setter
True if this is info for a symlink. Mutually exclusive to DirEntry.isFile and DirEntry.isDirectory.
no setter
name String
The file name of the entry. It is just the entity name and does not include the full path.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited