The file descriptor interface.

interface IFileDescriptor {
    absolutePathName?: string;
    kind: File;
    name: string;
    path: string;
    pathName: string;
    size: number;
    status: FileStatus;
    type: string;
}

Properties

absolutePathName?: string

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

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.

status: FileStatus

The status of the file.

type: string

The type of the file.