Skip to content

Latest commit

 

History

History

README.md

SimpleModule.Storage.Local

NuGet

Local filesystem storage provider for SimpleModule.Storage.

Installation

dotnet add package SimpleModule.Storage.Local

Quick Start

builder.Services.AddLocalStorage(options =>
{
    options.RootPath = Path.Combine(builder.Environment.ContentRootPath, "uploads");
});

Key Features

  • Stores files on the local disk for development and single-server deployments
  • Implements IStorageProvider from SimpleModule.Storage
  • Zero external dependencies -- no cloud SDK required

Links