Help for this page

Select Code to Download


  1. or download this
    foreach my $file (@files) {
        next if $file =~ m#/CVS/#;
    ...
        $file =~ s#^\./##;
        push(@noCvsDirs, $file);
    }
    
  2. or download this
    my $full_file = ($dir eq '.' ? $file : "$dir/$file");
    
  3. or download this
    use File::Spec ();
    
    ...
          File::Spec->catfile($dir, $file)
       )
    );