Hi,<br><br>The reader cannot read #<path:....> forms (is this the right term?).<br>When the interaction window is in constructor mode, for (build-path "a" "b"), it writes #<path:a/b>, but this cannot be read back.<br>
<br>First question: would it be possible to make the reader read paths?<br><br>Second question: I need this for my own purposes, so I wrote a path-constructor:<br>(define/provide (write-path p)<br> (cons 'build-path <br>
(map (ë(p-elt)(if (symbol? p-elt) <br> (list 'quote p-elt)<br> (path->string p-elt)))<br> (explode-path p))))<br><br>> (write-path (build-path 'same 'up "a" "b"))<br>
'(build-path 'same 'up "a" "b")<br><br>Does someone know if this is good enough, or am I omitting something (platform specific maybe)?<br><br>Thanks,<br>Laurent<br>