R/unoconv.R

Defines functions unoconv

Documented in unoconv

#' Unoconv file converter from R
#'
#' Unoconv file converter from R
#' 
#' @param ... file path to be exported
#' @param format file format
#' 
#' @export
unoconv <- function(... , format = stop("Format needed")) {
  Unoconv <- Sys.which("unoconv")
  files <- do.call(paste, list(...))
  system( command = paste(Unoconv, " -f ", format, files) )
}
lbraglia/yapomif documentation built on May 20, 2019, 11:26 p.m.