Hello gpssana,

Can you read (How do I post a question effectively?) and update your question?

Help us to help you, what you have tried? Errors? Help us replicate your problem.

Something like "Unable to read the sub direcctory using perl?" does not mean anything.

Update: I did a bit of search and I found this tutorial (Directory Recursion) written from the community. I have created a sample of code that reads my directory and sub directory and prints the contents that match my search.

Sample of code taken and modified from the tutorial:

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; sub get_perl_files { my $path = shift; opendir (my $dh, $path) or die "Unable to open $path: $!"; my @files = map { $path . '/' . $_ } grep { !/^\.{1,2}$/ } readdir ($dh); return grep { (/\.pl/) && (! -l $_) } map { -d $_ ? get_perl_files ($_) : $_ } @files; } my @files_returned = get_perl_files("/home/tinyos/Monks"); print Dumper \@files_returned; __END__ $ perl test.pl $VAR1 = [ '/home/tinyos/Monks/test.pl~', '/home/tinyos/Monks/cmp.pl', '/home/tinyos/Monks/df.pl', '/home/tinyos/Monks/mySuDir/test_subdir.pl', '/home/tinyos/Monks/parallel_ssh.pl', '/home/tinyos/Monks/test_2.pl~', '/home/tinyos/Monks/sshutle.pl', '/home/tinyos/Monks/test_2.pl', '/home/tinyos/Monks/excel.pl', '/home/tinyos/Monks/test.pl', '/home/tinyos/Monks/parsingvalues.pl' ];

Update2: modifying DIR to my $dh.

Hope this helps.

Seeking for Perl wisdom...on the process of learning...not there...yet!

In reply to Re: Unable to read the sub direcctory using perl? by thanos1983
in thread Unable to read the sub direcctory using perl? by gpssana

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.