Re: File::Copy & CGI.pm

2003-08-21 Thread Jenda Krynicky
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

AW: File::Copy & CGI.pm

2003-08-21 Thread B. Fongo
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

Re: File::Copy & CGI.pm

2003-08-20 Thread Yupapa.com
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

File::Copy & CGI.pm

2003-07-12 Thread B. Fongo
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