in reply to using sftp to get file information for processing
This part of your code works here:
I get a whole lot of debug information, and the file-listing as expected. Changing the anonymous sub to:[2005]tom@margo ~ $ perl use Net::SFTP; use Net::SFTP::Attributes; my $sftp = Net::SFTP->new('test2.dievision', user => 'MYNAME', passwor +d => 'MYPASSWORD', debug => 1); $sftp->ls('/(some/dir', sub {print STDERR "$_[0]->{filename}\n"}); 1;
resulted in correct answers as to gid and size; are you sure the connection is working correctly?$sftp->ls('/some/dir', sub {my $attrs = $sftp->do_stat($_[0]->{filenam +e}); print STDERR $_[0]->{filename}, " ", $attrs->gid, " ", $attrs- +>size, "\n"});
regards,
tomte
An intellectual is someone whose mind watches itself.
-- Albert Camus
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: using sftp to get file information for processing
by jblapham (Novice) on Aug 06, 2004 at 20:33 UTC |