Help for this page

Select Code to Download


  1. or download this
    foreach my $filename (@arr) {
        $x = File::Spec->catfile($path, $filename);
        unlink $x;
    }
    
  2. or download this
    unlink map {File::Spec->catfile($path, $_)} @arr;