Method: File.readlink
- Defined in:
- file.c
.readlink(link_name) ⇒ Object
3054 3055 3056 3057 3058 |
# File 'file.c', line 3054
static VALUE
rb_file_s_readlink(VALUE klass, VALUE path)
{
return rb_readlink(path, rb_filesystem_encoding());
}
|