Help for this page

Select Code to Download


  1. or download this
    100 => 100
    101 => 101
    ...
    1397 => 1397
    1398 => 1398
    ...
    
  2. or download this
    return @parents ? [ map {
                             map { "$_/$folderid" } @{ build_path( $_ ) }
                            } @parents ]
                    : [ $folderid ];
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        $folderpaths{$k} = build_path($k);
        print "$k => $_\n" for @{ $folderpaths{$k} };
    }