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
(Unicode C) Bunny Edge Storage - List FilesSee more Bunny CDN ExamplesRetrieve a list of files and directories located in the given directory. For more information, see https://docs.bunny.net/reference/get_-storagezonename-path-
#include <C_CkHttpW.h> #include <C_CkStringBuilderW.h> #include <C_CkJsonArrayW.h> #include <C_CkJsonObjectW.h> void ChilkatSample(void) { HCkHttpW http; BOOL success; HCkStringBuilderW sbResponse; int statusCode; HCkJsonArrayW jarr; HCkJsonObjectW json; const wchar_t *Guid; const wchar_t *StorageZoneName; const wchar_t *Path; const wchar_t *ObjectName; int Length; const wchar_t *LastChanged; int ServerId; int ArrayNumber; BOOL IsDirectory; const wchar_t *UserId; const wchar_t *ContentType; const wchar_t *DateCreated; int StorageZoneId; const wchar_t *Checksum; const wchar_t *ReplicatedZones; int i; int count_i; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttpW_Create(); // Use the "Password" from the "FTP & HTTP API Access" console web page for your Bunny storage zone. CkHttpW_SetRequestHeader(http,L"AccessKey",L"YOUR_FTP_AND_HTTP_PASSWORD"); // Storage Endpoints: // The storage API endpoint depends on the primary storage region of your storage zone. You can also find this in the FTP & HTTP API Information of your storage zone. // Falkenstein: storage.bunnycdn.com // New York: ny.storage.bunnycdn.com // Los Angeles: la.storage.bunnycdn.com // Singapore: sg.storage.bunnycdn.com // Sydney: syd.storage.bunnycdn.com // London: uk.storage.bunnycdn.com // ... (possibly others??) sbResponse = CkStringBuilderW_Create(); // Change the "storageZoneName" to your actual storage zone name. success = CkHttpW_QuickGetSb(http,L"https://uk.storage.bunnycdn.com/storageZoneName/testDir/",sbResponse); if (success == FALSE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); CkStringBuilderW_Dispose(sbResponse); return; } statusCode = CkHttpW_getLastStatus(http); wprintf(L"Status code = %d\n",statusCode); if (statusCode != 200) { wprintf(L"%s\n",CkStringBuilderW_getAsString(sbResponse)); wprintf(L"Failed.\n"); CkHttpW_Dispose(http); CkStringBuilderW_Dispose(sbResponse); return; } jarr = CkJsonArrayW_Create(); CkJsonArrayW_LoadSb(jarr,sbResponse); CkJsonArrayW_putEmitCompact(jarr,FALSE); wprintf(L"%s\n",CkJsonArrayW_emit(jarr)); // Here is a sample response. Parsing code is shown below.. // [ // { // "Guid": "ebd9ccff-faf7-449d-9c71-8662b9f3cf41", // "StorageZoneName": "chilkat", // "Path": "/chilkat/testDir/", // "ObjectName": "seahorse.jpg", // "Length": 24388, // "LastChanged": "2023-04-21T15:59:08.382", // "ServerId": 586, // "ArrayNumber": 0, // "IsDirectory": false, // "UserId": "6d26ab35-2914-422c-9378-d51f38166e53", // "ContentType": "", // "DateCreated": "2023-04-21T15:59:08.382", // "StorageZoneId": 266805, // "Checksum": "0503558E7B4D141C067BEECFD06F87F6F58B81E37918310F82C7C4077D27BD1D", // "ReplicatedZones": "SE,DE,LA,SG,JH,BR,SYD,NY" // }, // { // "Guid": "e74b85f8-4d5d-459e-a2fc-0fcfa8c926aa", // "StorageZoneName": "chilkat", // "Path": "/chilkat/testDir/", // "ObjectName": "seal.jpg", // "Length": 342708, // "LastChanged": "2023-04-21T15:59:08.763", // "ServerId": 586, // "ArrayNumber": 2, // "IsDirectory": false, // "UserId": "6d26ab35-2914-422c-9378-d51f38166e53", // "ContentType": "", // "DateCreated": "2023-04-21T15:59:08.763", // "StorageZoneId": 266805, // "Checksum": "C95F946A0299CE39C20A072B3DC581446B2EE2D94CA93901B58604F4EFB8AAB5", // "ReplicatedZones": "DE,SE,SG,LA,JH,BR,SYD,NY" // }, // { // "Guid": "ca80cdbd-c6cf-445d-b367-0b33de7ae65a", // "StorageZoneName": "chilkat", // "Path": "/chilkat/testDir/", // "ObjectName": "university.jpg", // "Length": 277581, // "LastChanged": "2023-04-21T15:59:10.142", // "ServerId": 586, // "ArrayNumber": 0, // "IsDirectory": false, // "UserId": "6d26ab35-2914-422c-9378-d51f38166e53", // "ContentType": "", // "DateCreated": "2023-04-21T15:59:10.142", // "StorageZoneId": 266805, // "Checksum": "96A10EAA1B778C066739A6233206022DB219B67A8775401D7865F40E6DD83571", // "ReplicatedZones": "DE,SE,SG,JH,BR,LA,SYD,NY" // } // ] // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON i = 0; count_i = CkJsonArrayW_getSize(jarr); while (i < count_i) { json = CkJsonArrayW_ObjectAt(jarr,i); Guid = CkJsonObjectW_stringOf(json,L"Guid"); StorageZoneName = CkJsonObjectW_stringOf(json,L"StorageZoneName"); Path = CkJsonObjectW_stringOf(json,L"Path"); ObjectName = CkJsonObjectW_stringOf(json,L"ObjectName"); Length = CkJsonObjectW_IntOf(json,L"Length"); LastChanged = CkJsonObjectW_stringOf(json,L"LastChanged"); ServerId = CkJsonObjectW_IntOf(json,L"ServerId"); ArrayNumber = CkJsonObjectW_IntOf(json,L"ArrayNumber"); IsDirectory = CkJsonObjectW_BoolOf(json,L"IsDirectory"); UserId = CkJsonObjectW_stringOf(json,L"UserId"); ContentType = CkJsonObjectW_stringOf(json,L"ContentType"); DateCreated = CkJsonObjectW_stringOf(json,L"DateCreated"); StorageZoneId = CkJsonObjectW_IntOf(json,L"StorageZoneId"); Checksum = CkJsonObjectW_stringOf(json,L"Checksum"); ReplicatedZones = CkJsonObjectW_stringOf(json,L"ReplicatedZones"); CkJsonObjectW_Dispose(json); i = i + 1; } CkHttpW_Dispose(http); CkStringBuilderW_Dispose(sbResponse); CkJsonArrayW_Dispose(jarr); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.