Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: folder properties / modified date

by snadra (Scribe)
on Jul 21, 2003 at 10:42 UTC ( [id://276208]=note: print w/replies, xml ) Need Help??


in reply to folder properties / modified date

You can use the function stat for getting informations about a file:
my @info = stat($file); my $last_access = $info[8]; my $last_modification = $info[9];
more information about stat(): perldoc -f stat

You can also use the file test operators for that.
# Age of file in days since modification: -M $file # Age of file in day since last access: -A $file # Age of file in days since inode change: -C $file
For more information read perldoc perlop

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 22:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found