in Perl, when I do use < module name> < ver>, the system finds the .pm for the library somewhere in the @INC path.
Is there a reliable way to which file was actually loaded?
|
|
|
|
|
|
|
Yes,
|
||||||
|
|
|
From what I found, perl will look in the directories within the path:
Then it will look in the standard library, and then in the current directory. That gives you a search order. My source: |
||
|
|
|
|
There are a good number of modules in CPAN for finding this information, the most likely candidates look to be Module::Find, Module::Which, and Module::Locate. I'd probably go with Module::Locate:
In list context locate returns all found copies of Some::Module in order based on @INC. Edit: derobert suggests a much better way, I didn't realize %INC already had it... This module based solution would still be useful if you wanted to know before loading the module where it was going to be loaded from. |
|||
|
|
|
|
Module::Mapper provides a way to walk the @INC tree to find modules:
|
||
|
|
|
|
You want to look in the |
||
|
|
|
|
If the module has pod documentation, and if you can guarantee that the perldoc utility in your PATH belongs to the same perl that is running your script, then this command will often give you the actual file being found:
|
||
|
|
|
|
You could use eval, I picked this up from a co-worker:
|
||
|
|