R/hz.show.path.R

hz.show.path <-
function(path = NULL){
	if(!is.null(path)){
		input <- path
	}else{
		input <- getwd()
	}
	if(.Platform$OS.type == "unix"){
		try(system(paste("open ",input), intern = TRUE, ignore.stderr = TRUE))
	}else{
		#try(system(paste("explorer ",input), intern = TRUE, ignore.stderr = TRUE))
	}
}

Try the cRacker package in your browser

Any scripts or data that you put into this service are public.

cRacker documentation built on May 2, 2019, 4:53 p.m.