R/all.exists.R

#' @title All Files exist
#' @description Wrapper for all files existing
#' @param ... files to be passed to \code{\link{file.exists}}
#' @return Logical length of \code{...}
#' @export
all_exists = function(...){
  all(file.exists(...))
}
muschellij2/msseg documentation built on May 23, 2019, 9:53 a.m.