On Thu, Feb 18, 2010 at 13:20, ceauke <coetzee.ev...@gmail.com> wrote: > So my structure is like this: > \cgi-bin\myprog.cgi <---- my program > \cgi-bin\mydir1\ <----- this one can be seen by my program > \mydir2\ <----- how do I show this content?
opendir my $DH, '\mydir2\' or die "Unable to open mydir2: $!"; The rest as before. -- Alan