
Cure
User
Feb 9, 2000, 7:47 PM
Post #2 of 2
(4309 views)
|
Re: Changing path of Mail::POP3Client module
[In reply to]
|
Can't Post
|
|
Hi, The @INC is the path to your perl Modules. If you want to change the path for a particular module(s) then do this: BEGIN{ unshift @INC, "C:\\windows\\desktop\\"; }; That Code will look for the module you want to use on your desktop. Put this code at the top of your perl script. This code will tell Perl where to find the module that you want to use. Cure
|