Interface WalkEntry
interface WalkEntry {
isDirectory: boolean;
isFile: boolean;
isSymlink: boolean;
name: string;
path: string;
}
isDirectory: boolean;
isFile: boolean;
isSymlink: boolean;
name: string;
path: string;
}
Hierarchy
- DirEntry
- WalkEntry
Index
Properties
Properties
isDirectory
isDirectory : boolean
True if this is info for a regular directory. Mutually exclusive to
DirEntry.isFile and DirEntry.isSymlink.
isFile
isFile : boolean
True if this is info for a regular file. Mutually exclusive to
DirEntry.isDirectory and DirEntry.isSymlink.
isSymlink
isSymlink : boolean
True if this is info for a symlink. Mutually exclusive to
DirEntry.isFile and DirEntry.isDirectory.
name
name: string
The file name of the entry. It is just the entity name and does not include the full path.
path
path: string
Full path of the entry.
Walk entry for
walk,walkSync,expandGlobandexpandGlobSync.