R/path.convert.R

Defines functions path.convert

path.convert <-
function(path){
	if(length(grep("/",path)) > 0){
		path <- gsub("/","\\",path,fixed = T)
		return(path)
	}
	if(length(grep("\\",path,fixed = T)) > 0){
		path <- gsub("\\","/",path,fixed = T)
		return(path)
	}
	
}

Try the mqqc package in your browser

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

mqqc documentation built on July 30, 2020, 3 p.m.