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(...))
}
muschellij2/smri.process documentation built on Nov. 22, 2019, 11:12 a.m.