R/load_file_if_exists.R

Defines functions load_file_if_exists

load_file_if_exists = function(path){
 if(file.exists(path)){
 
   load(path, envir=.GlobalEnv)
 }
  
}
dwarton/ecostats documentation built on March 14, 2024, 5:01 p.m.