The implementation of the fsetstat operation.

Methods
Public Instance methods
perform( handle, hash )

Performs the fsetstat operation on the given handle. The hash parameter is a Hash of attribute name/value pairs, from which an attributes object will be created and sent to the server. It represents the attributes to set on the file/directory represented by the handle.

    # File lib/net/sftp/operations/fsetstat.rb, line 29
29:     def perform( handle, hash )
30:       attrs = @driver.attr_factory.from_hash( hash )
31:       @driver.fsetstat( nil, handle, attrs )
32:     end