I have a question: I want to write a method called "copy" for my module M. This function is a wrapper of the imported function File::Copy::copy. So I have to use File::Copy::copy and define my own copy. But it will have an error saying that copy is redefined. How to achieve my goal?
#M.pm
package M;
use File::Copy;
#... constructor and other methods
sub copy {
my $self = shift;
my $target = shift;
File::Copy::copy($self->{'PATH'},$target);
}
use File::Copy qw( ); # Don't import anything.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With