From: "Yupapa.com" <[EMAIL PROTECTED]>
> If you are transfering file from a local machine to a remote machine,
> you do not use File::Copy module to copy files. File::Copy is used
> for copying files locally. You can use Net::FTP to transfer files
> from one machine to another. And of course, yo
ot;
while (<$location_and_file_name >){
chomp;
print DESTINATION $_;
}
close (DESTINATION);
This work well. I used it on my recent project.
Good luck
-Ursprüngliche Nachricht-
Von: Yupapa.com [mailto:[EMAIL PROTECTED]
Gesendet: Donnerstag, 21. Aug
HiHi~
If you are transfering file from a local machine to a remote machine, you do
not use File::Copy module to copy files. File::Copy is used for copying
files locally. You can use Net::FTP to transfer files from one machine to
another. And of course, you will need a FTP server for the machine
Hi,
I've a small script intended for file transfer from a windows machine to
a remote linux server. To implement that, I decided to use two module
i.e File::Basename, File::Copy and CGI.pm.
The File::Copy is working well locally, but it fails to copy files to a
remote machine through the Browser