AutoIt
AutoIt
Set the FTP Transfer Type to Binary
See more FTP Examples
Demonstrates the Chilkat Ftp2.SetTypeBinary method, which sets the FTP representation type to binary (TYPE I) for subsequent transfers. It takes no arguments.
Note: The local paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background: Binary mode transfers bytes verbatim and is the correct choice for essentially every file, text included. Chilkat already defaults to binary, so no call is needed to use it — this method exists to switch back explicitly after a prior
SetTypeAscii. The alternative ASCII mode applies line-ending translation that corrupts binary files, so binary is the safe default to keep in place.Chilkat AutoIt Downloads
Local $bSuccess = False
; Demonstrates the Ftp2.SetTypeBinary method, which sets the FTP representation type to binary
; (TYPE I) for subsequent transfers. It takes no arguments.
$oFtp = ObjCreate("Chilkat.Ftp2")
$oFtp.Hostname = "ftp.example.com"
$oFtp.Username = "myFtpLogin"
; 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
; Binary mode preserves file bytes exactly and is the appropriate choice for nearly all modern
; file types, text included. Chilkat already defaults to binary, so this call is only needed to
; switch back after a prior SetTypeAscii.
$bSuccess = $oFtp.SetTypeBinary()
If ($bSuccess = False) Then
ConsoleWrite($oFtp.LastErrorText & @CRLF)
Exit
EndIf
$bSuccess = $oFtp.GetFile("public_html/archive.zip","qa_output/archive.zip")
If ($bSuccess = False) Then
ConsoleWrite($oFtp.LastErrorText & @CRLF)
Exit
EndIf
$bSuccess = $oFtp.Disconnect()
If ($bSuccess = False) Then
ConsoleWrite($oFtp.LastErrorText & @CRLF)
Exit
EndIf