This function writes the provided text to a file at the specified path.
Usage
Path_write_text(path, text)
Arguments
- path
A character vector specifying the path to the file.
- text
The text to write to the file.
Examples
if (FALSE) {
Path_write_text("file.txt", "Hello, World!")
}