src/models/filesystem/file-system-path.ts
Interface describing the properties of an SCM file system path (directory or file).
Properties |
executable |
executable:
|
Type : boolean
|
Defined in src/models/filesystem/file-system-path.ts:9
|
True if executable, false otherwise |
name |
name:
|
Type : string
|
Defined in src/models/filesystem/file-system-path.ts:11
|
Name of the path |
read_only |
read_only:
|
Type : boolean
|
Defined in src/models/filesystem/file-system-path.ts:7
|
True if read-only, false otherwise |
size |
size:
|
Type : number
|
Defined in src/models/filesystem/file-system-path.ts:13
|
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;
}