Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(DataFlex) Wasabi Delete Bucket ObjectsSee more Wasabi ExamplesDemonstrates how to delete one or more objects in a bucket.
Use ChilkatAx-win32.pkg Procedure Test Handle hoHttp Boolean iSuccess String sBucketName String sObjectName1 String sObjectName2 Variant vSa Handle hoSa Variant vResp Handle hoResp String sTemp1 Integer iTemp1 Boolean bTemp1 // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Get Create (RefClass(cComChilkatHttp)) To hoHttp If (Not(IsComObjectCreated(hoHttp))) Begin Send CreateComObject of hoHttp End // Insert your access key here: Set ComAwsAccessKey Of hoHttp To "access-key" // Insert your secret key here: Set ComAwsSecretKey Of hoHttp To "secret-key" // Use the endpoint matching the bucket's region. Set ComAwsEndpoint Of hoHttp To "s3.us-west-1.wasabisys.com" Move "chilkattest" To sBucketName Move "seahorse.jpg" To sObjectName1 Move "seahorse2.jpg" To sObjectName2 Get Create (RefClass(cComCkStringArray)) To hoSa If (Not(IsComObjectCreated(hoSa))) Begin Send CreateComObject of hoSa End Get ComAppend Of hoSa sObjectName1 To iSuccess Get ComAppend Of hoSa sObjectName2 To iSuccess Get pvComObject of hoSa to vSa Get ComS3_DeleteMultipleObjects Of hoHttp sBucketName vSa To vResp If (IsComObject(vResp)) Begin Get Create (RefClass(cComChilkatHttpResponse)) To hoResp Set pvComObject Of hoResp To vResp End Get ComLastMethodSuccess Of hoHttp To bTemp1 If (bTemp1 = False) Begin Get ComLastErrorText Of hoHttp To sTemp1 Showln sTemp1 Procedure_Return End Get ComLastStatus Of hoHttp To iTemp1 Showln "Response status code = " iTemp1 // Display the XML response. Get ComBodyStr Of hoResp To sTemp1 Showln sTemp1 Send Destroy of hoResp End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.