R/fdir.R

Defines functions fdir

Documented in fdir

#' Create a filename  with the current working directory
#'
#' @param directory A string.
#' @param filename  A string.
#' @return A string
#' @export

fdir <- function(directory,filename) {
  return(paste0(getwd(), "/", directory, "/", filename))
}
kgoldfeld/ksgMisc documentation built on Nov. 12, 2021, 10:59 a.m.