Re: FTP automatic

2004-12-03 Thread JupiterHost.Net
[EMAIL PROTECTED] wrote: HI! Hello, I need to do something to automatize one process. When a file in directory reach 1 GB I need transfer file for other machine (ftp). You can use stat() to get the size: perldoc -f stat and check it. If its 1GB then you can use Net::FTP (search.cpan.org) to r

RE: FTP automatic

2004-12-03 Thread Bob Showalter
Bob Showalter wrote: > To send the file an FTP server, use the Net::FTP module from CPAN. To send the file *to* an FTP server... Sheesh, and English *is* my first language! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <

RE: FTP automatic

2004-12-03 Thread Bob Showalter
[EMAIL PROTECTED] wrote: > HI! > I need to do something to automatize one process. OK, what platform? Unix-ish, Windows, or other? > When a file in directory reach 1 GB I need transfer file for other > machine (ftp). You can write a Perl program to do this. The program can run continually an

RE: FTP automatic

2004-12-03 Thread Chris Devers
On Fri, 3 Dec 2004 [EMAIL PROTECTED] wrote: > Why? Is it hard? Tinkering with the speed of light? Yeah, a bit hard. What are you hoping to accomplish? Do you want to speed up the transfer? The only real way to do that is to widen the data pipe between the two computers. If they're on the sam

RE: FTP automatic

2004-12-03 Thread Bob Showalter
Adamiec, Larry wrote: > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > I'm waiting for solutions. > > You are going to be waiting for a very long time. English is probably not the OP's first language. I wouldn't assume he's being rude or presumptuous (yet :

RE: FTP automatic

2004-12-03 Thread perl_cova
Why? Is it hard?

RE: FTP automatic

2004-12-03 Thread Adamiec, Larry
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 13:36 > To: [EMAIL PROTECTED] > Subject: FTP automatic > > > HI! > I need to do something to automatize one process. > When a file in directory r

FTP automatic

2004-12-03 Thread perl_cova
HI! I need to do something to automatize one process. When a file in directory reach 1 GB I need transfer file for other machine (ftp). I'm waiting for solutions. Thanks.