Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    my @files;
    find {no_chdir =>1, wanted => sub{-d and return; push @files,$_ } },@r
    +oots;