Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kris701/blobsharp
A managed interface to communicate with Azure Blob Storage accounts
https://github.com/kris701/blobsharp
azure blob-storage csharp
Last synced: 23 days ago
JSON representation
A managed interface to communicate with Azure Blob Storage accounts
- Host: GitHub
- URL: https://github.com/kris701/blobsharp
- Owner: kris701
- License: mit
- Created: 2024-08-22T09:06:11.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T09:20:26.000Z (3 months ago)
- Last Synced: 2024-10-14T20:40:23.084Z (23 days ago)
- Topics: azure, blob-storage, csharp
- Language: C#
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Build and Publish](https://github.com/kris701/BlobSharp/actions/workflows/dotnet-desktop.yml/badge.svg)](https://github.com/kris701/BlobSharp/actions/workflows/dotnet-desktop.yml)
![Nuget](https://img.shields.io/nuget/v/BlobSharp)
![Nuget](https://img.shields.io/nuget/dt/BlobSharp)
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/kris701/BlobSharp/main)
![GitHub commit activity (branch)](https://img.shields.io/github/commit-activity/m/kris701/BlobSharp)
![Static Badge](https://img.shields.io/badge/Platform-Windows-blue)
![Static Badge](https://img.shields.io/badge/Platform-Linux-blue)
![Static Badge](https://img.shields.io/badge/Framework-dotnet--8.0-green)# BlobSharp
BlobSharp is a simple managed interface to communicate with [Azure Blob Storage accounts](https://azure.microsoft.com/en-us/products/storage/blobs/?ef_id=_k_Cj0KCQjww5u2BhDeARIsALBuLnN_Sexqki1LbNjC2Ilf9sVSfM4b-3MUivbJlEJb3Rall4hkPDsFkVAaAsVpEALw_wcB_k_&OCID=AIDcmmeauvx05c_SEM__k_Cj0KCQjww5u2BhDeARIsALBuLnN_Sexqki1LbNjC2Ilf9sVSfM4b-3MUivbJlEJb3Rall4hkPDsFkVAaAsVpEALw_wcB_k_&gad_source=1&gclid=Cj0KCQjww5u2BhDeARIsALBuLnN_Sexqki1LbNjC2Ilf9sVSfM4b-3MUivbJlEJb3Rall4hkPDsFkVAaAsVpEALw_wcB).
You can download, upload, delete, etc files on your blob storage account with this package.As an example, one can do the following to download a file from your blob storage:
```csharp
var client = new BlobStorageClient("<--Connection String Here-->");
using (var stream = await client.DownloadAsStreamAsync("somedir", "file"))
{
// Do something with the file.
}
```The package is available on the [NuGet Package Manager](https://www.nuget.org/packages/BlobSharp/).