Hi Rob,<div><br></div><div> I have suggestion for function dirtree_path. In this function '/' is added in the path. </div><div>I think it can be modified to add the '/' only in case it not there, it will avoid double "//" in the path.</div>
<div><br></div><div>It can be done by changing </div><div><br></div><div><b>if(len) path[len++] = '/';</b></div><div>to</div><div>||</div><div>V</div><div><br></div><div><b><font color="#000099">if(len)</font></b></div>
<div><b><font color="#000099"> if(path[len -1] != '/') path[len++] = '/';</font></b></div><div><b><font color="#000099"><br></font></b></div><div><font color="#000099">regards,</font></div><div><font color="#000099">Ashwini </font></div>