Sample code for 30+ languages & platforms
Visual FoxPro

Wasabi Upload File

See more Wasabi Examples

Demonstrates how to upload a file to a Wasabi bucket.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loHttp
LOCAL lcBucketName
LOCAL lcObjectName
LOCAL lcLocalFilePath
LOCAL lcContentType
LOCAL loXml

lnSuccess = 0

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

loHttp = CreateObject('Chilkat.Http')

* Insert your access key here:
loHttp.AwsAccessKey = "access-key"

* Insert your secret key here:
loHttp.AwsSecretKey = "secret-key"

loHttp.AwsEndpoint = "s3.wasabisys.com"

lcBucketName = "chilkattest"
lcObjectName = "seahorse.jpg"
lcLocalFilePath = "qa_data/jpg/seahorse.jpg"
lcContentType = "image/jpg"

loHttp.KeepResponseBody = 1

lnSuccess = loHttp.S3_UploadFile(lcLocalFilePath,lcContentType,lcBucketName,lcObjectName)

IF (lnSuccess <> 1) THEN
    ? loHttp.LastErrorText

    loXml = CreateObject('Chilkat.Xml')
    loXml.LoadXml(loHttp.LastResponseBody)
    ? loXml.GetXml()
ELSE
    ? "File uploaded."
ENDIF

RELEASE loHttp
RELEASE loXml