in reply to In Net::FTP, "Can't locate object method "delete" via package ftp..."

You forgot the $ in front of ftp. So it is making the method call on the package named ftp, and not on your object $ftp.

A random tip to the wise. Don't use prototypes. They really don't do what you think they do, and what they do do you almost certainly don't want.

  • Comment on Re: In Net::FTP, "Can't locate object method "delete" via package ftp..."