You need to re-think your depth computation. You're using $c for that, but the way I see it that can't be right. You're incrementing $c for each subdirectory within a directory -- not for each level. And you're also setting it back to 1 when you find a file within the directory that's not a subdirectory.

With recursion, the typical model is to increment a depth variable on entry to the function -- not before a recursive call. That way the stack pops it back to its proper value as each recursive call returns.

I'm also not 100% comfortable with a global PARSEDIR. The way you're using it -- getting the entire file list sorted -- you should be okay. But typically, on recursion if you open the same global it will have that global setting on return; i.e., you may return from a recursive call to find PARSEDIR referring to the directory you just processed. I always local these to avoid that (since you can't my a typeglob).


In reply to Re: Recursion problems... by steves
in thread Recursion problems... by Ranna

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.