A simple example :
See the Net::FTP source for more details

#!/usr/bin/perl -w use strict; use Net::FTP; use Fcntl qw(O_WRONLY O_RDONLY O_APPEND O_CREAT O_TRUNC); my $dns = 'ftp.squarepants.com'; my $user = 'SpongeBob'; my $passwd = '3xtr&Dry'; my $dir = 'under/pacifiq/ocean/'; my $ftp = Net::FTP->new( $dns, Debug => 0 ) or die "Cannot connect to $dns: $@"; $ftp->login( $user, $passwd ) or die "Cannot login ", $ftp->message; $ftp->cwd($dir) or die "Cannot change working directory ", $ftp->message; my ( $loc, $buf, $data ); my ( $remote, $local ); $remote = $local = 'BikiniBottom.png'; $data = $ftp->retr($remote) or die "unable to retrieve $remote\n"; unless ( sysopen( $loc, $local, O_WRONLY | O_TRUNC | O_CREAT ) ) { die "Cannot open $local: $!\n"; } while ( my $len = $data->read( $buf, 2048 ) ) { printf( " %d bytes read\n", $len ); unless ( print $loc $buf ) { die "Cannot write to $local: $!\n"; $data->abort; close($loc); } } print "Total read : ", $data->bytes_read(), "\n"; $data->close; $ftp->quit;

hth,
PooLpi

'Ebry haffa hoe hab im tik a bush'. Jamaican proverb

In reply to Re: Net::FTP trace uploaded data by poolpi
in thread Net::FTP trace uploaded data by ademmler

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.