| Name | Type | Description | Notes |
|---|---|---|---|
| type | String | All types except 'DUMMY' come from fs.Stats is*** methods results. (e.g. if isFile() is true, then type will be 'FILE') If type is not decidable by the methods, default type is 'FILE', for everything on the file system is basically a file. 'DUMMY' type means that some object 'does not exist for now'. Client may use 'DUMMY' type to mark something dangling, not written or created on real file system yet but visible to user. | |
| birthtime | Date | ||
| mtime | Date | ||
| mode | Integer | ||
| size | Integer | ||
| nlink | Integer |
-
FILE(value:"FILE") -
DIRECTORY(value:"DIRECTORY") -
BLOCK_DEVICE(value:"BLOCK_DEVICE") -
CHARACTER_DEVICE(value:"CHARACTER_DEVICE") -
LINK(value:"LINK") -
FIFO(value:"FIFO") -
SOCKET(value:"SOCKET") -
DUMMY(value:"DUMMY")