'/' could be used as file path separator in R. like:
path <- 'c:/users/john'
setwd(path)
However, the following also works:
path <- 'c:////users///john'
setwd(path)
It seems that the number of slash does not affect the above statement. I cannot find any rules about this. Does anyone have any clue on this? Thanks!