Skip to contents

Relative paths will be detected based on the presence of wildcard character(*) in the path specification.

Usage

validatePathIsAbsolute(path)

Arguments

path

A valid file path name.

Value

Error in case a relative path is found, otherwise no output will be returned.

Examples

# no error if path is absolute
validatePathIsAbsolute("Organism|path")
#> NULL

# error otherwise
# validatePathIsAbsolute("Organism|*path")