Skip to contents

Check if a character string is a path of an existing file.

Usage

IsPath(var.any)

Arguments

var.any

<any>: a variable

Value

A boolean

Details

IsPath

Examples

file.create("test.file", showWarnings = TRUE)
#> [1] TRUE
IsPath("test.file")
#> [1] TRUE
IsPath("test.file2")
#> [1] FALSE
unlink("test.file")