doc/WebSite/BLOB-Storing-File-System.md
File System Storage Provider is used to store BLOBs in the local file system as standard files inside a folder.
Install the Abp.BlobStoring.FileSystem NuGet package to your project and add [DependsOn(typeof(AbpBlobStoringFileSystemModule))] to the ABP module class inside your project.
Configuration is done in the Initialize method of your module class.
Example: Configure to use the File System storage provider by default
Configuration.Modules.AbpBlobStoring().Containers.Configure<AbpBlobStoringOptions>(options =>
{
options.Containers.ConfigureDefault(container =>
{
container.UseFileSystem(fileSystem =>
{
fileSystem.BasePath = "C:\\my-files";
});
});
});