The file descriptor interface.

interface IFileDescriptor {
    kind: File;
    name: string;
    path: string;
    pathName: string;
    size: number;
    type: string;
}

Properties

kind: File

The object kind.

name: string

The name of the file.

path: string

The path of the file.

pathName: string

The path name of the file (a combination of the path and the name).

size: number

The size of the file.

type: string

The type of the file.

Generated using TypeDoc