Method: Dir#to_path
- Defined in:
- dir.c
#path ⇒ String? #to_path ⇒ String?
Returns the path parameter passed to dir’s constructor.
d = Dir.new("..")
d.path #=> ".."
717 718 719 720 721 722 723 724 725 |
# File 'dir.c', line 717 static VALUE dir_path(VALUE dir) { struct dir_data *dirp; TypedData_Get_Struct(dir, struct dir_data, &dir_data_type, dirp); if (NIL_P(dirp->path)) return Qnil; return rb_str_dup(dirp->path); } |