path(p1)
Returns the string representation of the path
File.path("/dev/null") #=> "/dev/null" File.path(Pathname.new("/tmp")) #=> "/tmp"
static VALUE rb_file_s_path(VALUE klass, VALUE fname) { return rb_get_path(fname); }