Help for this page

Select Code to Download


  1. or download this
    sub recursion{
            findDir($dir, $min, $max);
    ...
    sub findDir{
        my ($dir, $min_depth, $max_depth) = @_;
    }
    
  2. or download this
    $dir = shift;
    $max = shift;
    $min = shift;
    etc ...