Implements the open operation, for obtaining a handle to an open file on the server.

Methods
Public Instance methods
perform( path, flags=IO::RDONLY, mode=0660 )

Performs the operation.

    # File lib/net/sftp/operations/open.rb, line 26
26:     def perform( path, flags=IO::RDONLY, mode=0660 )
27:       @driver.open( nil, path, flags, mode )
28:     end