Windows copies path with backslash
, which R does not accept. So, I wanted to write a function which would convert
to /
. For example:
chartr0 <- function(foo) chartr('','\/',foo)
Then use chartr0
as...
source(chartr0('E:RStuffest.r'))
But chartr0
is not working. I guess, I am unable to escape /
. I guess escaping /
may be important in many other occasions.
Also, is it possible to avoid the use chartr0
every time, but convert all path automatically by creating an environment in R which calls chartr0
or use some kind of temporary use like using options
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…