Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: comparing files based on timestamps

by manoj_speed (Prior)
on Apr 02, 2009 at 07:43 UTC ( [id://754885]=note: print w/replies, xml ) Need Help??


in reply to comparing files based on timestamps

Using stat() function we can get it.

Let's try this example,

#! /bin/perl
use strict;
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, $atime,$ctime,$blksize,$blocks) = stat("subfolder1");
print "$atime\t$mtime\t$ctime\n";

my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, $atime,$mtime,$ctime,$blksize,$blocks) = stat("Library");
print "$atime\t$mtime\t$ctime\n";

For more details see "perldoc -f stat".

  • Comment on Re: comparing files based on timestamps

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://754885]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-24 03:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found