Check if a character string is a path of an existing file.
Examples
file.create("test.file", showWarnings = TRUE)
#> [1] TRUE
IsPath("test.file")
#> [1] TRUE
IsPath("test.file2")
#> [1] FALSE
unlink("test.file")
Check if a character string is a path of an existing file.
file.create("test.file", showWarnings = TRUE)
#> [1] TRUE
IsPath("test.file")
#> [1] TRUE
IsPath("test.file2")
#> [1] FALSE
unlink("test.file")