write_file: Write data to a file

Description Usage Arguments Value Examples

View source: R/write_file.R

Description

This function differs from write_lines() in that it writes the data in text directly, without any checking or adding any newlines.

Usage

1

Arguments

text

A character vector of length 1 with data to write.

path

A character string giving the file path to write to.

Value

The UTF-8 encoded input text (invisibly).

Examples

1
2
3
4
5
tf <- tempfile()

write_file("some data\n", tf)

unlink(tf)

brio documentation built on Dec. 11, 2021, 10:09 a.m.