Method: File::Stat#mode
- Defined in:
- file.c
#mode ⇒ Integer
687 688 689 690 691 |
# File 'file.c', line 687
static VALUE
rb_stat_mode(VALUE self)
{
return UINT2NUM(ST2UINT(get_stat(self)->st_mode));
}
|
687 688 689 690 691 |
# File 'file.c', line 687
static VALUE
rb_stat_mode(VALUE self)
{
return UINT2NUM(ST2UINT(get_stat(self)->st_mode));
}
|