flowr 1.0.0

Runners for compiled 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Read (//context/file/file_read)
Reads `bytes` of data from the file with path `path`

### Include using
```toml
[[process]]
source = "context://file/file_read"
```

### Inputs
* `path` - String with the path of the file to be read, absolute (starting with `/`) or relative to the current working
directory of the process invoking the flow.

#### Outputs
* `bytes` - the raw data data read from the file
* `string` - the data read from the file, as a string
* `path` - String with the path of the file that was read, as was passed to the input.