R/ProcessDefaultFile.R

##
## File:   ProcessDefaultFile.R
## Author: Michael J. North
## Date:   November 25, 2015
##

##
## Define the default file processor.
##
processDefaultFile <- function(path = ".", ...) {

  ## Check the given path.
  if (file.exists(path)) return(paste(path, "File Type Unknown"))

  ## Return the default value.
  NULL

}
drmichaelnorth/SchemaOnRead documentation built on May 15, 2019, 2:21 p.m.