Skip to contents

Copies files from the shared code directory to a specified destination. This function appears to be incomplete in its current implementation.

Usage

copy_shared_file(..., to = getwd())

Arguments

...

Additional arguments (currently unused in the function body).

to

Character string specifying the destination directory. Defaults to the current working directory.

Value

The return value is currently undefined due to incomplete implementation.

Note

This function appears to be incomplete as it references a file path without specifying source files to copy.

Examples

if (FALSE) { # \dontrun{
# Copy shared files to current directory
copy_shared_file()

# Copy shared files to specific directory
copy_shared_file(to = "/path/to/destination")
} # }