write-this | R Documentation |
Helpers to write into or over a new or pre-existing file. Designed mostly for for internal use. File is written with UTF-8 encoding.
write_union(path, lines, quiet = FALSE)
write_over(path, lines, quiet = FALSE, overwrite = FALSE)
path |
Path to target file. It is created if it does not exist, but the parent directory must exist. |
lines |
Character vector of lines. For |
quiet |
Logical. Whether to message about what is happening. |
overwrite |
Force overwrite of existing file? |
Logical indicating whether a write occurred, invisibly.
write_union()
: writes lines to a file, taking the union of what's
already there, if anything, and some new lines. Note, there is no explicit
promise about the line order. Designed to modify simple config files like
.Rbuildignore
and .gitignore
.
write_over()
: writes a file with specific lines, creating it if
necessary or overwriting existing, if proposed contents are not identical
and user is available to give permission.
write_union("a_file", letters[1:3])
readLines("a_file")
write_union("a_file", letters[1:5])
readLines("a_file")
write_over("another_file", letters[1:3])
readLines("another_file")
write_over("another_file", letters[1:3])
## Not run:
## will error if user isn't present to approve the overwrite
write_over("another_file", letters[3:1])
## End(Not run)
## clean up
file.remove("a_file", "another_file")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.