atime()
public
Returns the last access time (a Time object) for
file, or epoch if file has not been accessed.
File.new("testfile").atime
Show source
static VALUE
rb_file_atime(VALUE obj)
{
rb_io_t *fptr;
struct stat st;
GetOpenFile(obj, fptr);
if (fstat(fptr->fd, &st) == -1) {
rb_sys_fail_path(fptr->pathv);
}
return stat_atime(&st);
}