Hi all - <br><br>I try to parse windows path on linux with `file-name-from-path`, but while it works fine on windows, it doens&#39;t parse on Linux.&nbsp; <br><br><div style="margin-left: 40px;">;; Windows <br>Welcome to DrScheme, version 4.0 [3m].<br>
Language: Module; memory limit: 128 megabytes.<br>&gt; (file-name-from-path &quot;c:\\documents and settings\\test\\my file.txt&quot;)<br>#&lt;path:my file.txt&gt;<br><br>;; Linux <br>Welcome to MzScheme v4.1.3 [3m], Copyright (c) 2004-2008 PLT Scheme Inc.<br>
&gt;&gt; (file-name-from-path &quot;c:\\documents and settings\\test\\my file.txt&quot;)<br>#&lt;path:c:\documents and settings\test\my file.txt&gt;<br></div><br>I tried to use bytes-&gt;path to generate a `windows-path`, but `file-name-from-path` doesn&#39;t appear to work with `windows-path`.<br>
<br>This need comes out of IE sending a full path with file upload, so I need to parse out the file name of the path on the web server on Linux. <br><br>What would be the best way to achieve this goal? <br><br>Thanks,<br>
yc<br><br>