R/fyle.R

Defines functions fyle

#' Pastes Directory Path
#' @param name An object
#' @return A string
#' @export

fyle <- function(name)
{
  if(notex("mainDirect"))
  {
    stop('~~~mainDirect must be global string~~~')
  }
  if(class(name) != "character")
  {
    stop('~~~name must be a string "like this"~~~')
  }else{
    name <- as.character(paste(mainDirect,"/",name,sep=""))
  }
  return(name)
}

# (GNU3 c) 2019 John Michael Adrian Wojahn
mikew93/cooltools documentation built on Dec. 8, 2019, 1:46 p.m.