# File lib/fuse/rfusefs-fuse.rb, line 385
      def utime(ctx,path,actime,modtime)
        return wrap_context(ctx,__method__,path,actime,modtime) if ctx

        #Touch...
        @root.touch(path,modtime) if @root.respond_to?(:touch)
      end