R/all.exists.R

Defines functions all_exists

Documented in all_exists

#' @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(...))
}
neuroconductor-devel/smri.process documentation built on Sept. 5, 2019, 8:01 p.m.