in reply to Re^2: 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.
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.

Replies are listed 'Best First'.
Re^4: Comparing Directories and copy files
by Fuisms (Initiate) on Jul 27, 2010 at 22:41 UTC
    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!