R/WinPath.R

Defines functions WinPath

Documented in WinPath

#*********************************************
#*********************************************
#' Run WinPath(), paste in a Windows file path, hit Enter, and get a valid path out (changing \ to /).
#'
#' @return
#'
#' @export
#'
WinPath <- function(){
	x <- readline()
	gsub("\\\\", "/", x)
##################################################
##################################################
}
arnejohannesholmin/TSD documentation built on April 14, 2024, 5:29 a.m.