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
- Use of File::Copy Fabien JACQUET
- Re: Use of File::Copy Tony Cook
- Re: Use of File::Copy Tim Musson
- RE: Use of File::Copy John Edwards