powered by
A function that writes text line by line
sf_writeLines(text, file, sep = "\n", na_value = "NA", encode_mode = "UTF-8")
A character to write to file
Name of the file to write to
The line separator character(s)
What to write in case of a NA string
"UTF-8" or "byte". If "UTF-8", text strings are normalized to UTF-8 while `CE_BYTES` strings are written as raw bytes.
A function for writing text data using `std::ofstream`.
writeLines
file <- tempfile() sf_writeLines(letters, file) sf_readLines(file)
Run the code above in your browser using DataLab