FALCONSEYE
Programmer
hi people,
thanks for your help in advance. i have saved the following code on a server and when i try to run, it gives this error
No such file or directory at D:\Montana\Fails\test.pl line 8.
(D:\ is the server)
and the script is
use strict;
use warnings;
open (FH, "C:\\\\Test\\61012049.ver") or die $!;
print while (<FH>);
where (C:\ is the hard drive on my pc). How can I show the server that the file is located on another machine? The "other machine" s hard drive C: is mapped on the server. the task i want to accomplish is much more complicated but i think if i resolve this problem, i will complete the other one. thanks for your help in advance!
thanks for your help in advance. i have saved the following code on a server and when i try to run, it gives this error
No such file or directory at D:\Montana\Fails\test.pl line 8.
(D:\ is the server)
and the script is
use strict;
use warnings;
open (FH, "C:\\\\Test\\61012049.ver") or die $!;
print while (<FH>);
where (C:\ is the hard drive on my pc). How can I show the server that the file is located on another machine? The "other machine" s hard drive C: is mapped on the server. the task i want to accomplish is much more complicated but i think if i resolve this problem, i will complete the other one. thanks for your help in advance!