![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re: File test to see creation time rather than last modified timeby MidLifeXis (Monsignor) |
on Feb 05, 2009 at 17:38 UTC ( #741616=note: print w/replies, xml ) | Need Help?? |
Under *nix, ctime is not creation time, but actually the last time the inode for the file was changed (from man stat - Last file status change time). MTime is the last modification time. As was said by kennethk in Re: File test to see creation time rather than last modified time, *nix does not record creation time of a document. An inode may change at some unexpected times (for example, when the mtime is changed). ls also lists the -c option as Use time of last modification of the inode (file created, mode changed, etc.) for sorting (-t) or printing (-l (ell)) I have seen the c in ctime being misunderstood for the 15-20 years I have been using *nix. In my tenure, this misunderstanding has been the cause of many mistakes on interpreting data from the filesystem. --MidLifeXis
In Section
Seekers of Perl Wisdom
|
|