Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

VBScript Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(VBScript) Asynchronous FTP Download

The Chilkat FTP component supports asynchronous uploads and downloads. This examples demonstrates doing a download in a background thread. The download is started by calling AsyncGetFileStart. While the download is in progress, your program may do other tasks. You may periodically check the AsyncFinished property to determine when the transfer is finished. The example below provides the remainder of the details.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set ftp = CreateObject("Chilkat_9_5_0.Ftp2")

ftp.Hostname = "ftp.myftpserver.com"
ftp.Username = "test"
ftp.Password = "test"

' Connect and login to the FTP server.
success = ftp.Connect()
If (success <> 1) Then
    outFile.WriteLine(ftp.LastErrorText)
    WScript.Quit
End If

localFilename = "hamlet.xml"
remoteFilename = "hamlet.xml"

' Begin the download in a background thread.
' Only 1 background upload or download may be active at any time.
' (per instance of an FTP object)
success = ftp.AsyncGetFileStart(remoteFilename,localFilename)
If (success <> 1) Then
    outFile.WriteLine(ftp.LastErrorText)
    WScript.Quit
End If

' The application is now free to do anything else
' while the file is downloading.
' For this example, we'll simply sleep and periodically
' check to see if the transfer if finished.  While checking
' however, we'll report on the progress in both number
' of bytes tranferred and performance in bytes/second.
Do While ftp.AsyncFinished <> 1

    outFile.WriteLine(ftp.AsyncBytesReceived & " bytes received")
    outFile.WriteLine(ftp.DownloadTransferRate & " bytes per second")

    ' Sleep 1 second.
    ftp.SleepMs 1000

Loop
outFile.WriteLine(ftp.AsyncBytesReceived & " total bytes received")
outFile.WriteLine(ftp.DownloadTransferRate & " final bytes per second")

' Did the download succeed?
If (ftp.AsyncSuccess = 1) Then
    outFile.WriteLine("File Downloaded!")
Else
    ' The error information for asynchronous ops
    ' is in AsyncLog as opposed to LastErrorText
    outFile.WriteLine(ftp.AsyncLog)
End If

success = ftp.Disconnect()

outFile.Close

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.