'creating a link to a network file on a wiki page

I am trying to link a specific document sitting on a server in a wiki page.

Say the server is \myserver and the file is at \myserver\share\myfolder\myfile.txt

How do I do that? tried the following, and none seem to work:

[file://myserver\share\myfolder\myfile.txt LinkHere]
[file:///myserver\share\myfolder\myfile.txt LinkHere]
[file:////myserver\share\myfolder\myfile.txt LinkHere]
[file://\\myserver\share\myfolder\myfile.txt LinkHere]
[file:////myserver/share/myfolder/myfile.txt LinkHere]
[file://myserver//share//myfolder//myfile.txt LinkHere]

Seems annoying, since my web browser opens such a link easily, and linking to an http page works fine:

[http://www.somesite.com/index.html AnotherLinkHere]

So, Ho do I do that?



Solution 1:[1]

Bit late but...

[file://myserver/share/myfolder/myfile.txt LinkHere] should work, and if you have any spaces in the path replace them with %20.

Solution 2:[2]

Use a mapped network drive to access the folder via Firefox. This means mapping myserver as the Q: drive in the example below.


    file:///Q:/share/myfolder/myfile.txt

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Rich
Solution 2 conman253