Skip to contents

Create an excel mask compatible with the convert_r() function

Usage

mask_convert_r(output_path, output_filename = "mask_convert_r.xlsx")

Arguments

output_path

Character 1L. Folder path where the mask will be created

output_filename

Character 1L. File name (with extension) of the mask

Value

No return value, called for side effects. An Excel file (.xlsx) is written to file.path(output_path, output_filename) containing an empty template with columns folder_path, file, converted_file, and to_convert.

Examples

mydir <- file.path(tempdir(), "convert_r_tests_examples")
dir.create(mydir)

mask_convert_r(output_path = mydir)

list.files(mydir)
#> [1] "mask_convert_r.xlsx"

unlink(mydir, recursive = TRUE)