Skip to contents

This function creates symbolic links from the specified paths to the target paths. Similar to Python's pathlib.Path.symlink_to() method.

Usage

Path_symlink_to(paths, targets)

Arguments

paths

A character vector of source file paths.

targets

A character vector of target file paths.

Examples

if (FALSE) {
Path_symlink_to("source_file.txt", "target_file.txt")
}