in reply to Re: Comparing Directories and copy files
in thread Comparing Directories and copy files

I dont use File:Copy because I do not believe that ActivePerl supports that module.
  • Comment on Re^2: Comparing Directories and copy files

Replies are listed 'Best First'.
Re^3: Comparing Directories and copy files
by toolic (Bishop) on Jul 27, 2010 at 22:29 UTC
    I dont use File:Copy because I do not believe that ActivePerl supports that module.
    Firstly, File::Copy is a core module, which means that it should be included in every properly installed Perl distribution. Secondly, I use ActiveState (5.8.8), and it is installed for me. What happens when you try this at your command prompt?
    perldoc File::Copy

    Use system instead, if you want to.

      Cool, it is there.. Thanks, I didnt know it was a core module. I was looking for it on the modules I could add and it wasnt there. I will definately use it instead of system. Thanks again guys!