CloudFileStore 8.0.17
dotnet add package CloudFileStore --version 8.0.17
NuGet\Install-Package CloudFileStore -Version 8.0.17
<PackageReference Include="CloudFileStore" Version="8.0.17" />
paket add CloudFileStore --version 8.0.17
#r "nuget: CloudFileStore, 8.0.17"
// Install CloudFileStore as a Cake Addin #addin nuget:?package=CloudFileStore&version=8.0.17 // Install CloudFileStore as a Cake Tool #tool nuget:?package=CloudFileStore&version=8.0.17
CloudFileStore
A .NET Standard multi-cloud file storage library (S3, Google Cloud buckets, Azure blobs).
About
CloudFileStore is a .NET Core library to try to unify or speed up file management when you're talking to multiple cloud providers. You know...ones apart from AWS! It's designed just for file storage: S3, Google Cloud, Azure Blobs and hopefully more as it develops.
It's not intended to cover every scenario each SDK offers, for example it won't give you metadata. It also bundles every file storage SDK of every cloud provider - it's designed this way (for now at least) on purpose, for applications that need multi-cloud file operations. So in terms of extra DLLs and file size, it's fairly hefty.
Two projects that currently use it are Letmein and Roadkill.
Usage
Right now, the library only supports text file loading and saving, but it will grow over time. Contributions are welcome, all that is asked is you follow the .NET framework guidelines e.g. implicit typed local variables.
var config = new S3Configuration()
{
BucketName = "some bucket",
SecretKey = "secret key",
AccessKey = "access key",
Region = "eu-west-1"
};
var provider = new S3StorageProvider(config);
await provider.SaveTextFileAsync("myfile.txt", "content here");
string content = await provider.LoadTextFileAsync("myfile.txt");
Full examples can be found in the integration tests.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- AWSSDK.S3 (>= 3.7.400.2)
- Google.Cloud.Storage.V1 (>= 4.10.0)
- WindowsAzure.Storage (>= 9.3.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.17 | 87 | 7/31/2024 |
1.0.59 | 816 | 12/9/2019 |
1.0.58 | 513 | 12/3/2019 |
1.0.57 | 502 | 12/3/2019 |
1.0.56 | 496 | 12/3/2019 |
1.0.55 | 478 | 12/3/2019 |
1.0.36 | 454 | 12/2/2019 |
1.0.16 | 1,059 | 9/19/2018 |
1.0.14 | 852 | 9/17/2018 |
1.0.13 | 808 | 9/15/2018 |
1.0.12 | 783 | 9/14/2018 |
1.0.11 | 810 | 9/13/2018 |
1.0.6 | 820 | 9/13/2018 |
1.0.5 | 783 | 9/13/2018 |
1.0.4 | 812 | 9/13/2018 |
1.0.3 | 843 | 9/13/2018 |
1.0.2 | 785 | 9/13/2018 |