On Tue, 19 Jun 2001, Fabien JACQUET wrote:

> Hi all,
> 
> I'm trying to use copy($name,$folder.$name), but it doesn't work!
> Yet, I've put  "use File::copy" in my program.

Perl is case-sensitive.  You want:

  use File::Copy;

With:

  use File::copy;

under Win32, perl finds the file OK, but then tries to call the import()
function in the File::copy package, which doesn't exist.

Tony

Reply via email to