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
(Mono C#) Read S3 Object Metadata of File Already Uploaded to S3Demonstrates how to retrieve the metadata from an S3 object. The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you are interested only in an object's metadata. To use HEAD, you must have READ access to the object. A HEAD request has the same options as a GET operation on an object. The response is identical to the GET response except that there is no response body.
// This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Chilkat.Http http = new Chilkat.Http(); // Insert your AWS keys here: http.AwsAccessKey = "AWS_ACCESS_KEY"; http.AwsSecretKey = "AWS_SECRET_KEY"; string bucketName = "chilkat.ocean"; string objectName = "seahorse.jpg"; // User-defined metadata are name/value pairs, and are returned in the HTTP response header. // Metadata header names begin with "x-amz-meta-" to distinguish them from other HTTP headers. // Note that Amazon S3 stores user-defined metadata keys in lowercase. // A HEAD request can be sent to return the response header without the response body. // The S3_FileExists method sends a HEAD request. // It can be used to get the response header. int retval = http.S3_FileExists(bucketName,objectName); if (retval < 0) { Debug.WriteLine("Failed to check for the S3 object existence"); Debug.WriteLine(http.LastErrorText); return; } if (retval == 0) { Debug.WriteLine("The S3 object does not exist."); return; } // The response header is available in the LastResponseHeader property. string responseHeader = http.LastResponseHeader; Debug.WriteLine("Response header:"); Debug.WriteLine(responseHeader); Debug.WriteLine("--"); // Here is an example response header: // x-amz-id-2: uS4Flff04M8x5YWajU231TP0ClBL19mMhuyfU5ZVQd6NsUHXVhHK+H3b0sjxY98Fujet1ejhyzk= // x-amz-request-id: 27950009AA8E68AA // Date: Mon, 23 Jan 2017 20:12:58 GMT // Last-Modified: Fri, 20 Jan 2017 00:22:57 GMT // ETag: "a8551f0a5437f43a796fca7623ee9232" // x-amz-meta-species: big-belly seahorse // x-amz-meta-genus: Hippocampus // x-amz-meta-habitat: shallow tropical and temperate waters // Accept-Ranges: bytes // Content-Type: image/jpg // Content-Length: 24388 // Server: AmazonS3 // HTTP requests and responses are MIME. For easy parsing, the response header // can be loaded into a Chilkat MIME object Chilkat.Mime mime = new Chilkat.Mime(); mime.LoadMime(responseHeader); // Examine the metadata values: Debug.WriteLine("x-amz-meta-species: " + mime.GetHeaderField("x-amz-meta-species")); Debug.WriteLine("x-amz-meta-genus: " + mime.GetHeaderField("x-amz-meta-genus")); Debug.WriteLine("x-amz-meta-habitat: " + mime.GetHeaderField("x-amz-meta-habitat")); Debug.WriteLine("--"); // It is possible to iterate over the header fields to find all x-amz-meta* headers int i = 0; int numHeaders = mime.NumHeaderFields; Chilkat.StringBuilder sbName = new Chilkat.StringBuilder(); while (i < numHeaders) { sbName.SetString(mime.GetHeaderFieldName(i)); if (sbName.StartsWith("x-amz-meta",false) == true) { Debug.WriteLine(sbName.GetAsString() + ": " + mime.GetHeaderFieldValue(i)); } i = i + 1; } // The output: // x-amz-meta-species: big-belly seahorse // x-amz-meta-genus: Hippocampus // x-amz-meta-habitat: shallow tropical and temperate waters |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.