Method: Pathname#make_link
- Defined in:
- pathname.c
#make_link(old) ⇒ Object
Creates a hard link at pathname.
See File.link.
623 624 625 626 627 |
# File 'pathname.c', line 623
static VALUE
path_make_link(VALUE self, VALUE old)
{
return rb_funcall(rb_cFile, id_link, 2, old, get_strpath(self));
}
|