R/file.choose2.r

Defines functions file.choose2

Documented in file.choose2

# file.choose2.r
# written by JuG
# August 05 2019


#' Do something
#' @author JuG
#' @description
#' @param
#' @details
#' @examples
#'
#'
#' @return
#' @export


file.choose2 <- function(...) {
  pathname <- NULL;
  tryCatch({
    pathname <- file.choose(T);
  }, error = function(ex) {
  })
  pathname;
}
jgodet/GmrcShinyStats documentation built on March 11, 2021, 10:46 a.m.