Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FileSystemEntry

interface FileSystemEntry {
readonly filesystem: FileSystem;
readonly fullPath: string;
readonly isDirectory: boolean;
readonly isFile: boolean;
readonly name: string;
getParent(successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;
}
var FileSystemEntry: {
prototype: FileSystemEntry;
new (): FileSystemEntry;
}
;

§Properties

§
readonly filesystem: FileSystem
[src]
§
readonly fullPath: string
[src]
§
readonly isDirectory: boolean
[src]
§
readonly isFile: boolean
[src]
§
readonly name: string
[src]

§Methods

§
getParent(successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void
[src]