R/ProcessDefaultFile.R

Defines functions processDefaultFile

##
## 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

}

Try the SchemaOnRead package in your browser

Any scripts or data that you put into this service are public.

SchemaOnRead documentation built on May 2, 2019, 4 p.m.