Help for this page

Select Code to Download


  1. or download this
        if (-e $file){
            my $sb = stat($file) or croak("Could not stat ($file): $!");
    ...
            $mtime = $time;
            }
        }
    
  2. or download this
    sub touch {
        my $t    = time;
    ...
            utime($t,$t,$file);
        }
    }