in reply to NET::FTP error question

NET::FTP is spelled 'Net::FTP'. Case matters on some systems.

Update: To clarify tye's reply, and my own post, on case-insensitive systems, this will work (assuming we're trying to use the Net::FTP module):

use NET::FTP;
but this won't:
my $ftp = NET::FTP->new("hostname");
On case-sensitive systems, the first statement will fail, as would the second if it ever got executed.

Replies are listed 'Best First'.
(tye)Re: NET::FTP error question
by tye (Sage) on Oct 25, 2001 at 20:19 UTC

    ...and the case used in module names matters to Perl on all systems.

            - tye (but my friends call me "Tye")