utime(p1, p2)
public
Update the access and modification times of the file.
See File.utime.
Show source
static VALUE
path_utime(VALUE self, VALUE atime, VALUE mtime)
{
return rb_funcall(rb_cFile, rb_intern("utime"), 3, atime, mtime, get_strpath(self));
}