R/copy.R

Defines functions copy

Documented in copy

#' This function copies and moves files
#' @param filename, the file to be copied
#' @param path, the destination path
#' @export

copy <- function(filename, path = "/Users/sucheen/Documents/Cal Poly SLO/Academics/Summer 2021/Frost2021Package/R/") {
  file.copy(filename, to = path, overwrite = TRUE)
}
kingsuching/Frost2021Package documentation built on March 19, 2022, 11:51 p.m.