SFTP Object
 
Syntax
 
SFTP.ReadFileBytes(handle As String, ByVal numBytes As Long) As Variant
 
Description
Reads file data from a remote file on the SSH server. The handle is a file handle returned by the OpenFile method. The numBytes is the maximum number of bytes to read. If the end-of-file is reached prior to reading the number of requested bytes, then fewer bytes may be returned.
 
To read an entire file, one may call ReadFileBytes repeatedly until Eof(handle) returns 1.
 
Returns a zero-length byte array (as a Variant) on failure.
An empty array will have a UBound of -1 meaning 0 elements.
 
See Also