# The FileInfo object

Metadata of a single artifact file or directory.

## Attributes

- `path` (string)
  The path relative to the root artifact directory run.
- `is_dir` (boolean)
  Whether the path is a directory.
- `file_size` (int64)
  The size in bytes of the file. Unset for directories.

## Example

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


