Help for this page

Select Code to Download


  1. or download this
    foreach my $dir(@dirs){
    mkpath("$to/$dir");
    }
    
  2. or download this
    mkpath(@dirs);
    
  3. or download this
    find (sub {push @dirs => $to . '/' . $File::Find::name if -d},$from);