How to get the parent directory of the current working directory in Julia
An alternative solution is to use dirname
:
dirname(pwd())
This should work for you:
cd(pwd, "..")
An alternative solution is to use dirname
:
dirname(pwd())
This should work for you:
cd(pwd, "..")