R/dir_exists.R

dir.exists <- function(d) {
  de <- file.info(d)$isdir
  ifelse(is.na(de), FALSE, de)
}
AaarrrRookie/GWR documentation built on May 5, 2019, 11:41 a.m.