Learn R Programming

brio (version 1.1.3)

write_file: Write data to a file

Description

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

Usage

write_file(text, path)

Value

The UTF-8 encoded input text (invisibly).

Arguments

text

A character vector of length 1 with data to write.

path

A character string giving the file path to write to.

Examples

Run this code
tf <- tempfile()

write_file("some data\n", tf)

unlink(tf)

Run the code above in your browser using DataLab