AutoIt
AutoIt
Open a Remote Directory on an SFTP Server
See more SFTP Examples
Demonstrates the Chilkat SFtp.OpenDir method, which opens a remote directory and returns a handle for reading its entries. The only argument is the directory path. Close the handle with CloseHandle when finished.
Background: Listing a directory in SFTP is a handle-based operation, mirroring file access: open the directory to get a handle, read its entries, then close it. The handle is passed to
ReadDirListing to retrieve the names and attributes. As with file handles, the directory handle is a server-side resource that should be closed to avoid exhausting the server's limits.Chilkat AutoIt Downloads
Local $bSuccess = False
; Demonstrates the SFtp.OpenDir method, which opens a remote directory and returns a handle for
; reading its entries. The only argument is the directory path.
$oSftp = ObjCreate("Chilkat.SFtp")
; Connect, authenticate, and initialize the SFTP subsystem.
Local $iPort = 22
$bSuccess = $oSftp.Connect("sftp.example.com",$iPort)
If ($bSuccess = False) Then
ConsoleWrite($oSftp.LastErrorText & @CRLF)
Exit
EndIf
; Normally you would not hard-code the password in source. You should instead obtain it
; from an interactive prompt, environment variable, or a secrets vault.
Local $sPassword = "mySshPassword"
$bSuccess = $oSftp.AuthenticatePw("mySshLogin",$sPassword)
If ($bSuccess = False) Then
ConsoleWrite($oSftp.LastErrorText & @CRLF)
Exit
EndIf
$bSuccess = $oSftp.InitializeSftp()
If ($bSuccess = False) Then
ConsoleWrite($oSftp.LastErrorText & @CRLF)
Exit
EndIf
; Open the remote directory. OpenDir returns a handle string.
Local $sHandle = $oSftp.OpenDir("subdir")
If ($oSftp.LastMethodSuccess = False) Then
ConsoleWrite($oSftp.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite("Opened directory, handle = " & $sHandle & @CRLF)
; The directory entries are read with ReadDirListing using this handle.
; Close the handle when finished.
$bSuccess = $oSftp.CloseHandle($sHandle)
If ($bSuccess = False) Then
ConsoleWrite($oSftp.LastErrorText & @CRLF)
Exit
EndIf
$oSftp.Disconnect