R/file_path.R

Defines functions file_path

file_path <- function(dir, file_name)
{
    if (!is_dir(dir)) {
        stop("'dir' is not a proper 'dir' object.",
             call. = FALSE)
    }

    return(file.path(dir, file_name))
}
jeanmathieupotvin/dfp documentation built on Jan. 8, 2020, 2:32 a.m.