Help for this page

Select Code to Download


  1. or download this
    my $src_stat = stat($srcname);
    my $dst_stat = lstat($dstfile);
    ...
    
    printf "%s: %s %d\n", $srcfile, $src_stat->mtime(), $src_stat->size();
    printf "%s: %s %d\n", $dstfile, $dst_stat->mtime(), $dst_stat->size();