Take advantage of File Providers in ASP.Net Core to retrieve information about files and directories and interact with the physical file system Credit: nikada / Getty Images File Providers in ASP.Net Core provide a layer of abstraction on the file system, allowing us to easily obtain file and directory information, watch for changes, and of course access physical files. This article examines how we can work with file providers in ASP.Net Core. File Provider abstractions The file providers implement the IFileProvider interface. There are three implementations of IFileProvider: Physical, Embedded, and Composite. The IFileProvider is the main interface that exposes the necessary methods to retrieve file information (using the IFileInfo interface) and directory information (using the IDirectoryContents interface). To set up change notifications, you can take advantage of the IChangeToken interface. Below I’ve listed each file provider class and its purpose. Each of these providers implements the IFileProvider interface. PhysicalFileProvider—used to provide access to the physical file system EmbeddedFileProvider—used to access files inside the assemblies CompositeFileProvider—used to provide combined access; i.e., a single interface used to work with files from multiple providers Use PhysicalFileProvider in ASP.Net Core In this section we will explore how we can take advantage of the PhysicalFileProvider class in ASP.Net Core. First off, follow the steps outlined below to create an ASP.Net Core application in Visual Studio. Open Visual Studio 2017 Click on File > New > Project Select “ASP.Net Core Web Application (.Net Core)” from the list of templates Specify a name for the project Click OK Select “API” in the “New .Net Core Web Application…” window Select the version of ASP.Net Core you would like to use from the drop-down list at the top Uncheck “Enable Docker Support” and “Configure for HTTPS” Select “No Authentication” as we won’t be using authentication here Click OK This will create a new ASP.Net Core project. The following code snippet illustrates how you can inject a PhysicalFileProvider object as a dependency using the ConfigureServices method of the Startup.cs file. public void ConfigureServices(IServiceCollection services) { services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1); IFileProvider physicalProvider = new PhysicalFileProvider(Directory.GetCurrentDirectory()); services.AddSingleton<IFileProvider>(physicalProvider); } Next, edit the ValuesController (which we will use here for simplicity) and write the following code. public class ValuesController : ControllerBase { private readonly IFileProvider _fileProvider; public ValuesController(IFileProvider fileProvider) { _fileProvider = fileProvider; } //Other methods } Note how dependency has been injected using the argument constructor. Below is the method that accesses the current directory and then uses the IFileInfo interface to retrieve the names of all of the files the directory contains. The file names are then returned as a generic list of string objects. [HttpGet] public ActionResult<List<string>> Get() { List<string> lst = new List<string>(); var contents = _fileProvider.GetDirectoryContents(“”); foreach(IFileInfo fileInfo in contents) { lst.Add(fileInfo.Name); } return lst; } The following code listing shows the complete code of the ValuesController class. [Route(“api/[controller]”)] [ApiController] public class ValuesController : ControllerBase { private readonly IFileProvider _fileProvider; public ValuesController(IFileProvider fileProvider) { _fileProvider = fileProvider; } [HttpGet] public ActionResult<List<string>> Get() { List<string> lst = new List<string>(); var contents = _fileProvider.GetDirectoryContents(“”); foreach(IFileInfo fileInfo in contents) { lst.Add(fileInfo.Name); } return lst; } } Use CompositeFileProvider in ASP.Net Core The CompositeFileProvider class combines one or more IFileProvider instances and exposes a single interface that can be used to work with multiple providers. Note that when creating a CompositeFileProvider, you should pass one or more IFileProvider instances to the constructor of the CompositeFileProvider class. Here is an example that illustrates this. var physicalProvider = _env.ContentRootFileProvider; var embeddedProvider = new EmbeddedFileProvider(Assembly.GetEntryAssembly()); var compositeProvider = new CompositeFileProvider(physicalProvider, embeddedProvider); Use EmbeddedFileProvider in ASP.Net Core The EmbeddedFileProvider class is used to access files that are embedded in assemblies. The following code snippet illustrates how EmbeddedFileProvider can be injected as a dependency in ASP.Net Core. public void ConfigureServices(IServiceCollection services) { services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1); IFileProvider embeddedProvider = new EmbeddedFileProvider(Assembly.GetEntryAssembly()); services.AddSingleton<IFileProvider>(embeddedProvider); } You can take advantage of File Providers to retrieve information about files and directories and also set up change notifications in your .Net Core applications. And if your ASP.Net Core application needs access to the file system, you can take advantage of dependency injection to inject an instance of the file provider you would like to use. Related content news F# 9 adds nullable reference types Latest version of Microsoft’s functional .NEt programming language provides a type-safe way to handle reference types that can have null as a valid value. By Paul Krill Nov 18, 2024 3 mins Microsoft .NET Programming Languages Software Development how-to How to use DispatchProxy for AOP in .NET Core Take advantage of the DispatchProxy class in C# to implement aspect-oriented programming by creating proxies that dynamically intercept method calls. By Joydip Kanjilal Nov 14, 2024 7 mins Microsoft .NET C# Development Libraries and Frameworks news Visual Studio 17.12 brings C++, Copilot enhancements Debugging and productivity improvements also feature in the latest release of Microsoft’s signature IDE, built for .NET 9. By Paul Krill Nov 13, 2024 3 mins Visual Studio Integrated Development Environments Microsoft .NET news Microsoft’s .NET 9 arrives, with performance, cloud, and AI boosts Cloud-native apps, AI-enabled apps, ASP.NET Core, Aspire, Blazor, MAUI, C#, and F# all get boosts with the latest major rev of the .NET platform. By Paul Krill Nov 12, 2024 4 mins C# Generative AI Microsoft .NET Resources Videos