This function writes files to a specified directory based on a structured list.
Usage
write_files(sl_app, dest)
Arguments
- sl_app
A structured list representing files and their contents.
- dest
A character string specifying the target directory.
Value
None. Writes files to the specified directory.
Examples
if (FALSE) { # \dontrun{
# Write files from a structured list to a directory
write_files(sl_app, "output_dir")
} # }