Skip to contents

Retrieve the config template path

Usage

get_cfg_template_path(template_dir_name = NULL, template_name = NULL)

Arguments

template_dir_name

A character string: the name of the config template sub-directory or NULL for the default. Default: 'config'

template_name

A character string: the name of the config template file or NULL for the default. Default: The name returned by get_cfg_template_name()

Value

A character string: the path to the config template file.

Examples

get_cfg_template_path()
#> [1] "/home/runner/work/_temp/Library/dimex/config/config-template.yml"
if (FALSE) { # \dontrun{
get_cfg_template_path("cfg")
get_cfg_template_path(template_name = "cfg-file.yml")
get_cfg_template_path("cfg", "cfg-file.yml")
} # }