in reply to Accesing Module directory

Good Day Perl Monks

use lib 'C:\My\Module\Directory';

Investigation of the state of the @INC variable in the module environment has revealed that perl automatically puts the use lib search path into module's @INC array. Therefore I don't need to repeat these use lib commands in my module files.

Thanks for your help