<div>What the heck is this all about???</div>
<div> </div>
<div>40> os:getenv("HOMEDRIVE").                                                                    <br>"C:"<br>41> os:getenv("HOMEPATH").                                                                     <br>
"<a href="file://users//602382443">\\Users\\602382443</a>"<br>42> filename:join(os:getenv("HOMEDRIVE"), os:getenv("HOMEPATH")).                              <br>"/Users/602382443"<br>
43> filename:nativename(filename:join(os:getenv("HOMEDRIVE"), os:getenv("HOMEPATH"))).         <br>"<a href="file://users//602382443">\\Users\\602382443</a>"<br>44> filename:nativename("C:/" ++ os:getenv("HOMEPATH")).                              <br>
"c:\\Users\\602382443"<br>45> "C:" ++ os:getenv("HOMEPATH").</div>
<div>"c:\\Users\\602382443"<br></div>
<div>Do I *really* have to do this by hand? I had assumed that the whole point of filename:join/2 was that it does the right thing on each platform without me having to worry about what the directory separator is meant to be?</div>

<div> </div>
<div>Am I doing something wrong?</div>