is there a way to go back in the directory using the R function setwd() by different levels?
for e.g.
> getwd()
/home/folder1/folder2/
I want to arrive in home in just one shot without typing setwd("../.."). It is very tedious to write n times "../"
One way would be to create the path
"../.."dynamically.