Accessing Network Paths
- Posted by mattlewis (admin) Sep 17, 2011
- 1438 views
There have been some issues lately when accessing network paths on Windows (see ticket:696). Euphoria 4.0.3 can access these sorts of paths, referred to as Uniform Naming Convention (UNC).
The format of a UNC path:
server\share-name\etc
Also, note that you can use backtick quotes to avoid having to escape the backslashes:
`\\server\share-name\rest\of\path` "\\\\server\\share-name\\rest\\of\\path"
Matt