File

src/models/filesystem/file-system-path.ts

Description

Interface describing the properties of an SCM file system path (directory or file).

Index

Properties

Properties

executable
executable: boolean
Type : boolean

True if executable, false otherwise

name
name: string
Type : string

Name of the path

read_only
read_only: boolean
Type : boolean

True if read-only, false otherwise

size
size: number
Type : number

Size of the element (bytes)

export interface IFileSystemPath {
    /** True if read-only, false otherwise */
    read_only: boolean;
    /** True if executable, false otherwise */
    executable: boolean;
    /** Name of the path */
    name: string;
    /** Size of the element (bytes) */
    size: number;
}

results matching ""

    No results matching ""