Blobject.AmazonS3
5.0.8
dotnet add package Blobject.AmazonS3 --version 5.0.8
NuGet\Install-Package Blobject.AmazonS3 -Version 5.0.8
<PackageReference Include="Blobject.AmazonS3" Version="5.0.8" />
paket add Blobject.AmazonS3 --version 5.0.8
#r "nuget: Blobject.AmazonS3, 5.0.8"
// Install Blobject.AmazonS3 as a Cake Addin #addin nuget:?package=Blobject.AmazonS3&version=5.0.8 // Install Blobject.AmazonS3 as a Cake Tool #tool nuget:?package=Blobject.AmazonS3&version=5.0.8
Blobject
Blobject (formerly BlobHelper) is a common, consistent storage interface for Microsoft Azure, Amazon S3, S3 compatible storage (i.e. Minio, Less3, View), CIFS (Windows file shares), NFS (Linux and UNIX file shares), and local filesystem written in C#.
Help, Feedback, Contribute
If you have any issues or feedback, please file an issue here in Github. We'd love to have you help by contributing code for new features, optimization to the existing codebase, ideas for future releases, or fixes!
Overview
This project was built to provide a simple interface over external storage to help support projects that need to work with potentially multiple storage providers. It is by no means a comprehensive interface, rather, it supports core methods for creation, retrieval, deletion, metadata, and enumeration.
Contributors
- @phpfui for adding the original code for BLOB copy functionality
- @Revazashvili for fixes related to byte array instantiation, Azure, and refactoring
- @courtzzz for keeping the region list updated
Dependencies
Though this library is MIT licensed, it is dependent upon other libraries, some of which carry a different license. Each of these libraries are included by reference, that is, none of their code has been modified.
Package | URL | License |
---|---|---|
AWSSDK.S3 | https://github.com/aws/aws-sdk-net | Apache 2.0 |
Azure.Storage.Blobs | https://github.com/Azure/azure-sdk-for-net | MIT |
EzSmb | https://github.com/ume05rw/EzSmb | LGPL-3.0 |
SMBLibrary | https://github.com/TalAloni/SMBLibrary | LGPL-3.0 |
NFS-Client | https://github.com/SonnyX/NFS-Client | Unknown, public |
Nekodrive | https://github.com/nekoni/nekodrive | Unknown, public |
S3Lite | https://github.com/jchristn/S3Lite | MIT |
New in v5.0.x
- Rename from
BlobHelper
toBlobject
- Added support for CIFS and NFS
- Remove use of continuation tokens for disk
- Add
S3Lite
variant, not dependent on AWSSDK - Enumerate APIs now return an
IEnumerable<BlobMetadata>
, no pagination required - Refactor
Example Project
Refer to the Test
project for exercising the library.
Getting Started - AWS S3
using Blobject;
AwsSettings settings = new AwsSettings(
accessKey,
secretKey,
"us-west-1",
bucket);
BlobClient blobs = new BlobClient(settings);
Getting Started - AWS S3 Compatible Storage (Minio, Less3, etc)
using Blobject.AmazonS3;
AwsSettings settings = new AwsSettings(
endpoint, // http://localhost:8000/
true, // enable or disable SSL
accessKey,
secretKey,
"us-west-1",
bucket,
baseUrl // i.e. http://localhost:8000/{bucket}/{key}
);
AmazonS3BlobClient blobs = new AmazonS3BlobClient(settings);
Getting Started - AWS S3 Lite (non-AWS library to reduce dependency drag)
using Blobject.AmazonS3Lite;
// Initialize settings as above
AmazonS3LiteBlobClient blobs = new AmazonS3BlobClient(settings);
Getting Started - Azure
using Blobject.AzureBlob;
AzureBlobSettings settings = new AzureBlobSettings(
accountName,
accessKey,
"https://[accountName].blob.core.windows.net/",
containerName);
AzureBlobClient blobs = new AzureBlobClient(settings);
Getting Started - CIFS
using Blobject.CIFS;
CifsSettings settings = new CifsSettings(
"localhost",
username,
password,
sharename);
CifsBlobClient blobs = new CifsBlobClient(settings);
Getting Started - Disk
using Blobject.Disk;
DiskSettings settings = new DiskSettings("blobs");
DiskBlobClient blobs = new DiskBlobClient(settings);
Getting Started - NFS
using Blobject.NFS;
NfsSettings settings = new NfsSettings(
"localhost",
0, // user ID
0, // group ID,
sharename,
NfsVersionEnum.V3 // V2, V3, or V4
);
NfsBlobClient = new NfsBlobClient(settings);
Getting Started (Byte Arrays for Smaller Objects)
await blobs.WriteAsync("test", "text/plain", "This is some data"); // throws IOException
byte[] data = await blobs.GetAsync("test"); // throws IOException
bool exists = await blobs.ExistsAsync("test");
await blobs.DeleteAsync("test");
Getting Started (Streams for Larger Objects)
// Writing a file using a stream
FileInfo fi = new FileInfo(inputFile);
long contentLength = fi.Length;
using (FileStream fs = new FileStream(inputFile, FileMode.Open))
{
await _Blobs.WriteAsync("key", "content-type", contentLength, fs); // throws IOException
}
// Downloading to a stream
BlobData blob = await _Blobs.GetStreamAsync(key);
// read blob.ContentLength bytes from blob.Data
Accessing Files within Folders
//
// Use a key of the form [path]/[to]/[file]/[filename].[ext]
//
await blobs.WriteAsync("subdirectory/filename.ext", "text/plain", "Hello!");
Metadata and Enumeration
Enumeration is always full; the library will manage any continuation tokens (e.g. AWS S3, S3 compatible, Azure) and also recurse into subdirectories for file, CIFS, and NFS.
// Get BLOB metadata
BlobMetadata md = await _Blobs.GetMetadataAsync("key");
// Enumerate BLOBs
foreach (BlobMetadata blob in await _Blobs.EnumerateAsync())
Console.WriteLine(blob.Key + " " + blob.ContentLength + " folder? " + blob.IsFolder);
Copying BLOBs from Repository to Repository
If you have multiple storage repositories and wish to move BLOBs from one repository to another, use the BlobCopy
class (refer to the Test.Copy
project for a full working example).
Thanks to @phpfui for contributing code and the idea for this enhancement!
// instantiate two BLOB clients
BlobCopy copy = new BlobCopy(from, to);
CopyStatistics stats = copy.Start();
/*
{
"Success": true,
"Time": {
"Start": "2021-12-22T18:44:42.9098249Z",
"End": "2021-12-22T18:44:42.9379215Z",
"TotalMs": 28.1
},
"ContinuationTokens": 0,
"BlobsEnumerated": 12,
"BytesEnumerated": 1371041,
"BlobsRead": 12,
"BytesRead": 1371041,
"BlobsWritten": 12,
"BytesWritten": 1371041,
"Keys": [
"filename.txt",
...
]
}
*/
Version History
Refer to CHANGELOG.md for version history.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- AWSSDK.S3 (>= 3.7.402.2)
- Blobject.Core (>= 5.0.8)
-
net6.0
- AWSSDK.S3 (>= 3.7.402.2)
- Blobject.Core (>= 5.0.8)
-
net7.0
- AWSSDK.S3 (>= 3.7.402.2)
- Blobject.Core (>= 5.0.8)
-
net8.0
- AWSSDK.S3 (>= 3.7.402.2)
- Blobject.Core (>= 5.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Refactor, update, rename, and new repository types.