or download this
# Access UNC path \\myserver\c$\Data
$genfile = '\\myserver\c$\Data\x.gb'; # wrong
$genfile = '\\\myserver\c$\Data\x.gb'; # correct, but doesn't look nic
+e
$genfile = '\\\\myserver\\c$\\Data\\x.gb'; # correct, and looks consis
+tent