R/cd.R

Defines functions cd

Documented in cd

#' Change Directory
#'
#' Wrapper for setwd() using unix command form.
#'
#' @param filepath Filepath to set as current working directory.
#' @keywords wrapper
#' @export

cd = function(filepath){
  setwd(filepath)
}
cbedwards/cedwards documentation built on Feb. 24, 2023, 6:53 p.m.