in reply to Finding the full path of a module implementation file

I don't understand what you're trying to do exactly, but perl's __FILE__ variable may prove handy. Here is an example use of it from Net/Config.pm:

my $file = __FILE__; my $ref; $file =~ s/Config.pm/libnet.cfg/;