R/clear_tempdir.R

Defines functions .clear_tempdir

#' Internal function used for clearing the tempdir() when testing
#' @export
.clear_tempdir <- function() {
  unlink(dir(tempdir(), full.names = TRUE), recursive = TRUE)
}
Sumpfohreule/MyUtilities documentation built on July 1, 2022, 1:21 a.m.