Method: Path#utime
- Defined in:
- lib/path/file.rb
#utime(atime, mtime) ⇒ Object
Updates the access and modification times. See File.utime.
105 106 107 |
# File 'lib/path/file.rb', line 105 def utime(atime, mtime) File.utime(atime, mtime, @path) end |