Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: How do I get the last accessed time for directory?

by btrott (Parson)
on Apr 06, 2000 at 11:20 UTC ( [id://7013]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $atime = (stat "foo_dir")[8];
    
  2. or download this
    use File::stat;
    my $stat = stat "foo_dir";
    my $atime = $stat->atime;
    

Log In?
Username:
Password:

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

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

    No recent polls found