| write-this {usethis} | R Documentation |
Write into or over a file
Description
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.
Usage
write_union(path, lines, quiet = FALSE)
write_over(path, lines, quiet = FALSE, overwrite = FALSE)
Arguments
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? |
Value
Logical indicating whether a write occurred, invisibly.
Functions
-
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.Rbuildignoreand.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.
Examples
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")