In R
, starting from any working directory, I can do
setwd("~/Desktop")
and this is consistent with how my linux distribution interprets cd
at the command line. But Julia
does not seem to recognize the ~/
notation:
julia> cd("~/Desktop")
ERROR: chdir ~/Desktop: No such file or directory
in systemerror at error.jl:38
in cd at file.jl:13
Is this a bug?