in reply to Loading all modules under a directory

Hi,

You can load if you create all the modules under the same namespace. You can use the all pragma (see all.

An example.

use strict;
use warnings;

use all Win32::;

# This will load all the Win32 modules that you have installed onto your system.

Hope this helps some.

Displeaser.
  • Comment on Re: Loading all modules under a directory