Skip to contents

Check if a file path is valid. If a file not exist, complete or create the file path with the name and extension given to the function.

Usage

CheckFilePath(path.pth = NULL, fileName.chr = "file", format.chr = "txt")

Arguments

path.pth

<character>: the file path to check and complete if not complete.

fileName.chr

<character>: the name of the file to complete if not in `path.pth`.

format.chr

<character>: the extension format of the file to complete if not in `path.pth`.

Value

A character string.

Details

CheckFilePath

Examples

CheckFilePath(path.pth="my/path/to/my/file.txt")
#> [1] "my/path/to/my/file.txt"
CheckFilePath(path.pth=NULL,fileName.chr="file", format.chr="txt")
#> [1] "/home/runner/work/DevTK/DevTK/docs/reference/file_2022:11:21:085752540"