Method: Pathname#birthtime
- Defined in:
- pathname.c
#- ⇒ Object
Returns the birth time for the file. If the platform doesn't have birthtime, raises NotImplementedError.
See File.birthtime.
491 492 493 494 495 |
# File 'pathname.c', line 491
static VALUE
path_birthtime(VALUE self)
{
return rb_funcall(rb_cFile, id_birthtime, 1, get_strpath(self));
}
|