Help for this page

Select Code to Download


  1. or download this
               my $file_time = (stat($full_name))[9];
               my $diff = $now - $file_time;
               $diff = $diff / 86400;
               my $read = localtime($file_time);
    
  2. or download this
    my $file_time;
    my $diff = ($now - ($file_time = (stat($full_name))[9])) / 86400;
    my $read = localtime($file_time);
    
  3. or download this
               $diff = $diff / 86400;
               my $read = localtime($file_time);
    ...
    
               } elsif ( $diff > 3 ) {
                     next if (/\.gz/);
    
  4. or download this
                  unlink "$full_name";
    
  5. or download this
               my $read = localtime($file_time);