Prev: Simple Hack TO Get $1500 To Your PayPal Account.
Next: Interview question - What is your favourite Perl CPAN Module?
From: PerlFAQ Server on 20 Jul 2010 06:00 This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at http://faq.perl.org . -------------------------------------------------------------------- 9.25: How do I fetch/put an FTP file? "LWP::Simple" (available from CPAN) can fetch but not put. "Net::FTP" (also available from CPAN) is more complex but can put as well as fetch. -------------------------------------------------------------------- The perlfaq-workers, a group of volunteers, maintain the perlfaq. They are not necessarily experts in every domain where Perl might show up, so please include as much information as possible and relevant in any corrections. The perlfaq-workers also don't have access to every operating system or platform, so please include relevant details for corrections to examples that do not work on particular platforms. Working code is greatly appreciated. If you'd like to help maintain the perlfaq, see the details in perlfaq.pod.
From: Sherm Pendley on 20 Jul 2010 11:15 PerlFAQ Server <brian(a)theperlreview.com> writes: > 9.25: How do I fetch/put an FTP file? > > "LWP::Simple" (available from CPAN) can fetch but not put. "Net::FTP" > (also available from CPAN) is more complex but can put as well as fetch. Net::FTP is a core module since at least 5.8.1 - maybe earlier too, but that's the oldest version I have at hand to check. sherm-- -- Sherm Pendley <www.shermpendley.com> <www.camelbones.org> Cocoa Developer
From: brian d foy on 23 Jul 2010 14:48
In article <m2630arxqe.fsf(a)shermpendley.com>, Sherm Pendley <spamtrap(a)shermpendley.com> wrote: > PerlFAQ Server <brian(a)theperlreview.com> writes: > > > 9.25: How do I fetch/put an FTP file? > > > > "LWP::Simple" (available from CPAN) can fetch but not put. "Net::FTP" > > (also available from CPAN) is more complex but can put as well as fetch. > > Net::FTP is a core module since at least 5.8.1 - maybe earlier too, > but that's the oldest version I have at hand to check. I'll update this. Thanks, |