Sample code for 30+ languages & platforms
Xojo Plugin

Transition from SFtp.ReadDir to SFtp.ReadDirListing

Provides instructions for replacing deprecated ReadDir method calls with ReadDirListing.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

Dim sftp As New Chilkat.SFtp

// ...
// ...

Dim handle As String
handle = sftp.OpenDir(".")
// ...
// ...

// ------------------------------------------------------------------------
// The ReadDir method is deprecated:

Dim dirObj As Chilkat.SFtpDir
dirObj = sftp.ReadDir(handle)
If (sftp.LastMethodSuccess = False) Then
    System.DebugLog(sftp.LastErrorText)
    Return
End If

// ...
// ...

// ------------------------------------------------------------------------
// Do the equivalent using ReadDirListing.
// Your application creates a new, empty SFtpDir object which is passed 
// in the last argument and filled upon success.

Dim dirOut As New Chilkat.SFtpDir
success = sftp.ReadDirListing(handle,dirOut)
If (success = False) Then
    System.DebugLog(sftp.LastErrorText)
    Return
End If

// ...
// ...

success = sftp.CloseHandle(handle)