AutoIt
AutoIt
FTP Automatic Post-Connect Commands
See more FTP Examples
Demonstrates the AutoFeat, AutoSyst, AutoOptsUtf8, and AutoXcrc properties, which control commands Chilkat issues automatically around connecting and transferring.
Background: Chilkat normally probes and adapts to a server on its own:
AutoFeat discovers capabilities with FEAT, AutoSyst learns the OS type to parse legacy listings, and AutoOptsUtf8 enables UTF-8 filenames when the server advertises it. These are on by default and rarely worth changing. AutoXcrc is the exception worth enabling deliberately — it verifies each upload with the server's XCRC checksum, catching corruption automatically where supported.Chilkat AutoIt Downloads
Local $bSuccess = False
$oFtp = ObjCreate("Chilkat.Ftp2")
$oFtp.Hostname = "ftp.example.com"
$oFtp.Username = "myFtpLogin"
; These auto-* properties control commands Chilkat sends automatically after connecting. They
; are on/off by default as noted, and are rarely changed.
; AutoFeat (default True): automatically send FEAT to discover server capabilities.
$oFtp.AutoFeat = True
; AutoSyst (default True): automatically send SYST after login to learn the server OS type.
$oFtp.AutoSyst = True
; AutoOptsUtf8 (default True): send OPTS UTF8 ON when the FEAT response advertises UTF8.
$oFtp.AutoOptsUtf8 = True
; AutoXcrc (default False): request an XCRC checksum after each upload and treat a mismatch as
; a failure, giving automatic post-upload verification where the server supports XCRC.
$oFtp.AutoXcrc = True
; 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.
$oFtp.Password = "myPassword"
$bSuccess = $oFtp.Connect()
If ($bSuccess = False) Then
ConsoleWrite($oFtp.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite("Connected with the configured automatic features." & @CRLF)
$bSuccess = $oFtp.Disconnect()
If ($bSuccess = False) Then
ConsoleWrite($oFtp.LastErrorText & @CRLF)
Exit
EndIf