Don't make things harder than they need to be. Perl will do just fine if you put modules in paths that make sense.

For example, if you put Utils.pm in the perl/ directory, and then push into @INC the path "common\perl", Perl will search there for it. If you had a module named Utils::Foo, you sould put foo.pm in "Common\Perl\Utils\", and with the same "common\perl" entry in @INC, Perl will find it. Add entries to @INC with the use lib pragma, or by pushing within a BEGIN{} block.

But if you put Utils::Foo in "Common\Perl\Bar\", Perl won't find it. The '::' in the module name is an indicator to Perl that it needs to start with the paths listed in @INC, plus the directory that is the same as whatever lies to the left of the :: (in this case Utils), and then look for the file named after whatever comes to the right of :: (in this case Foo.pm).

Any other module placement strategy is just going to create more work.

See perlvar for an explanation of @INC, and then perlmod for discussion of modules. perlmodlib also offers a few suggestions on module naming and placement within the file structure.


Dave


In reply to Re: Need help with includes in subdirectories by davido
in thread Need help with includes in subdirectories by Seventh

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.