Help for this page

Select Code to Download


  1. or download this
    my $full_file = "$directory/$file";
    
  2. or download this
    next if $file =~ /^\.{1,2}$/;
    # or
    next if $file eq '.' || $file eq '..';
    # ...