FileURL and UNC-Paths

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FileURL and UNC-Paths

Alexander Lazarevic'
Hi,

Shouldn't this work (on a Windows machine, <=7.4):

'\\servername\tmp' asFilename asURI

<URL:file://servername/tmp>

'\\servername\tmp' asFilename asURI asFilename

Exception 'This platform does not support a file name syntax for
accessing remote files.'

What's wrong about adding

pathForRemoteHost: aHostName
        ^'\\', aHostName

to PCFilename class?

Alex