Write into or over a file
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)
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. |
contents |
Character vector of lines. |
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")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.