While investigating a failed local win32 build, I found that Erlang interprets paths differently than the cmd.exe shell or WSL bash. These path glitches are significant to application developers as well as Erlang devs I believe—it could be documented, or maybe even worthy of improving in the win32 file
implementation?
Comparing Erlang and bash:
erl:
> file:set_cwd("/mnt/c/Users/spam").
{error,enoent}
> file:set_cwd("/Users/spam").
ok
> file:set_cwd("c:/Users/spam").
ok
> file:set_cwd("c:\\Users\\spam")
ok
bash:
# ls -d /mnt/c/Users/spam
/mnt/c/Users/spam
# ls -d /Users/spam
ls: cannot access '/Users/spam': No such file or directory
# ls -d c:/Users/spam
ls: cannot access 'c:/Users/spam': No such file or directory
# ls -d c:\\Users\\spam
ls: cannot access 'c:\Users\spam': No such file or directory
Erlang only misses one case “/mnt/c/Users/spam” but it happens to be the only one recognized by WSL bash. I’m proposing that we make the file module more robust by correctly interpreting that style of path.
As an example of why this matters to real users, I ran into this bug when running make test
from bash in a Windows directory under /mnt/c/ with ERL_TOP set to start with this path. It starts well, but Erlang eventually crashes in a test script when attempting file operations:
Error! Failed to eval: ts:compile_datadirs(“/mnt/c/Users/spam/erlang-otp/lib/common_test/test_server/variables…”,“*_SUITE_data”).
My workaround was to symlink ln -s /mnt/c/Users /Users
and then set ERL_TOP to begin with “/Users/…” which is obscure enough that I’m suspecting there’s something wrong with how I created my local environment.