# The FileInfo object

Stores the attributes of a file or directory.

## Attributes

- `path` (string)
  The absolute path of the file or directory.
- `is_dir` (boolean)
  True if the path is a directory.
- `file_size` (int64)
  The length of the file in bytes. Set to 0 for directories.
- `modification_time` (int64)
  Last modification time of given file in milliseconds since epoch.

## Example

```json
{
  "path": "string",
  "is_dir": true,
  "file_size": 0,
  "modification_time": 0
}
```


