in reply to Re: Perl - Read a file on another server
in thread Perl - Read a file on another server
The filename was quoted with single quote marks...
$file = '//Server2/f$/logconn.txt';
which would be fine. However if he were using double quote
marks like then you would be correct. Also interesting to not that the direction of the
slashes make no real difference on win32 perl.
are equivalent.$file = '//Server2/f$/logconn.txt'; and $file = '\\Server2\f$l\logconn.txt';
EEjack
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)Re2: Perl - Read a file on another server
by tye (Sage) on May 05, 2001 at 08:12 UTC |