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-releases/smri.process documentation built on Oct. 28, 2020, 3:54 a.m.