in reply to More on Stat() vs -A

FYI, you can also use File::stat to be able to reference the various stat fields by name:

use File::stat; print stat('/some/file')->atime;

Brad