Help for this page

Select Code to Download


  1. or download this
    $values1 = stat($currentFile2) or warn "can't stat the file: $!\n";
    $hashDir2{$currentFileCD} = {
    ...
        mtime =>$values1->mtime,
    };
    
  2. or download this
    if ( my $values = stat($currentFile2) ) {
        $hashDir2{ $currentFileCD } = {
    ...
        warn "can't stat the file: $!\n"
    }