Re: Feed Net::FTP an in-memory file

2005-04-21 Thread John W. Krahn
Peter Rabbitson wrote: Hello everyone, Hello, Very simple: I need to generate a file and upload it to ftp. Currently I am wrapping the file together, writing it out to a temp file on disk, calling $ftp->put($tmp_file) on it, and unlinking it. Is there a way to skip the write to disk? FTP is the

Re: Feed Net::FTP an in-memory file

2005-04-21 Thread Peter Rabbitson
On Thu, Apr 21, 2005 at 10:56:16AM -0500, JupiterHost.Net wrote: > > > Peter Rabbitson wrote: > > >Hello everyone, > > Hello, > > >Very simple: I need to generate a file and upload it to ftp. Currently I > >am wrapping the file together, writing it out to a temp file on disk, > >calling $ft

Re: Feed Net::FTP an in-memory file

2005-04-21 Thread JupiterHost.Net
Peter Rabbitson wrote: Hello everyone, Hello, Very simple: I need to generate a file and upload it to ftp. Currently I am wrapping the file together, writing it out to a temp file on disk, calling $ftp->put($tmp_file) on it, and unlinking it. Is there a way to skip the write to disk? The put()

Re: Feed Net::FTP an in-memory file

2005-04-21 Thread mgoland
- Original Message - From: Peter Rabbitson <[EMAIL PROTECTED]> Date: Thursday, April 21, 2005 10:42 am Subject: Feed Net::FTP an in-memory file > Hello everyone, > > Very simple: I need to generate a file and upload it to ftp. > Currently I am > wrapping the file together, writing it