edit_file | R Documentation |
Opens a file for editing in RStudio, if that is the active environment, or
via utils::file.edit()
otherwise. If the file does not exist, it is
created. If the parent directory does not exist, it is also created.
edit_template()
specifically opens templates in inst/templates
for use
with use_template()
.
edit_file(path, open = rlang::is_interactive())
edit_template(template = NULL, open = rlang::is_interactive())
path |
Path to target file. |
open |
Whether to open the file for interactive editing. |
template |
The target template file. If not specified, existing template files are offered for interactive selection. |
Target path, invisibly.
## Not run:
edit_file("DESCRIPTION")
edit_file("~/.gitconfig")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.