R/convert.eph.ep.folder.R

Defines functions convert.eph.ep.folder

Documented in convert.eph.ep.folder

#' A function to convert an entire folder from .eph to .ep
#' 
#' This package uses .ep format. Use this function to convert a folder containing .eph files into .ep files
#' 
#' @param path Path to the folder containing some .eph files
#' @keywords folder convert ep .ep .eph
#' @export


convert.eph.ep.folder <- function(path){
  files <- list.files(path)
  index <- grep(".eph$", files)
  files <- files[index]
  
  lapply(files, convert.eph.ep)
}
EricMenetre/NPL documentation built on June 23, 2021, 2:10 p.m.