save_file
Writes a byte stream to a file.
save_file path:string, [append=bool, real_time=bool, uds=bool]
Description
Section titled “Description”Writes a byte stream to a file.
path: string
Section titled “path: string”The file path to write to. If intermediate directories do not exist, they will
be created. When ~
is the first character, it will be substituted with the
value of the $HOME
environment variable.
append = bool (optional)
Section titled “append = bool (optional)”If true
, appends to the file instead of overwriting it.
real_time = bool (optional)
Section titled “real_time = bool (optional)”If true
, immediately synchronizes the file with every chunk of bytes instead
of buffering bytes to batch filesystem write operations.
uds = bool (optional)
Section titled “uds = bool (optional)”If true
, creates a Unix Domain Socket instead of a normal file. Cannot be
combined with append=true
.
Examples
Section titled “Examples”Save bytes to a file
Section titled “Save bytes to a file”save_file "/tmp/out.txt"