storage
storage copied to clipboard
💿 Storage abstractions with implementations for .NET/.NET Standard
If yes, any link? If no, I do think a lot of guys want it. Any chellange to implement?
It appears that the connection string functionality of Storage.Net doesn't allow specifying the ServiceUrl for the AWS client.
The BlobStorageProvider issues a PutBucket request to initialize the client. In use cases where all you need is read access to an existing bucket, this call requires permissions that do...
### Fixes Issue #129 ### Description Make bucket creation optional and on by default. - [x] I've made sure that this PR is raised against the [develop](https://github.com/aloneguid/storage/tree/develop) branch. - [...
### Fixes Issue #176 When calling the extension method "RenameAsync" a NotSupportedException is thrown. This happens as the OpenReadAsync() method for the AzureBlobStorage class will return a stream of type...
Your assembly isn't strong named. Is it possible to strong named it as soon as possible ?
I need to override `HttpClientTransport` on `BlobClientOptions`, I think it would be nice if the API exposed a way to register it on the `UseAzureBlobStorage` extension method as a `Func`...
### Fixes AccessDenied exceptions when creating a folder in disk blob storage from two processes at the same time. ### Description When running multiple processes pointed to the same disk...
Hello, In azure.md: ```csharp using(AzureStorageLease lease = await _blobs.AcquireLeaseAsync(id, timeSpan)) { // your code await _client.WriteAsync(..); } ``` Where the first parameter is blob id or container name, and the...
Provide a leaky abstraction (via `IAzureBlobStorageNativeOperations`) to open azure **block** blob as a seekable stream. The seekable stream will allow to navigate to any part of a massive blob without...