Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

ASP.NET Core 2.0 File Providers

0.00/5 (No votes)
1 Sep 2017 1  
How to access directory and file information in ASP.NET Core, ensuring restricted access to file system. Continue reading...

Problem

How to access directory and file information in ASP.NET Core, ensuring restricted access to file system.

Solution

Starting from an empty project, amend the Startup class:

public void ConfigureServices(
            IServiceCollection services)
        {
            services.AddSingleton<IFileProvider>(
                new PhysicalFileProvider(Directory.GetCurrentDirectory()));
        }

        public void Configure(
            IApplicationBuilder app,
            IHostingEnvironment env)
        {
            app.UseHelloFileProvider();
        }

Create a middle to read contents of directory:

public class HelloFileProviderMiddleware
    {
        private readonly RequestDelegate next;
        private readonly IFileProvider fileProvider;

        public HelloFileProviderMiddleware(
            RequestDelegate next,
            IFileProvider fileProvider)
        {
            this.next = next;
            this.fileProvider = fileProvider;
        }

        public async Task Invoke(HttpContext context)
        {
            var output = new StringBuilder("");

            IDirectoryContents dir = this.fileProvider.GetDirectoryContents("");
            foreach (IFileInfo item in dir)
            {
                output.AppendLine(item.Name);
            }

            await context.Response.WriteAsync(output.ToString());
        }
    }

You could also read a particular file’s contents:

public class HelloFileProviderMiddleware
    {
        private readonly RequestDelegate next;
        private readonly IFileProvider fileProvider;

        public HelloFileProviderMiddleware(
            RequestDelegate next,
            IFileProvider fileProvider)
        {
            this.next = next;
            this.fileProvider = fileProvider;
        }

        public async Task Invoke(HttpContext context)
        {
            IFileInfo file = this.fileProvider.GetFileInfo("Startup.cs");

            using (var stream = file.CreateReadStream())
            using (var reader = new StreamReader(stream))
            {
                var output = await reader.ReadToEndAsync();
                await context.Response.WriteAsync(output.ToString());
            }
        }
    }

Discussion

ASP.NET Core provides an encapsulation of System.IO.File type in order to limit the access to file system via PhysicalFileProvider type, which is an implementation of IFileProvider.

IFileProvider can be configured as a service (in Startup) and then injected as dependency in middleware, controllers, etc. This keeps the configuration of file access (e.g., the directory to access) in one place, at the application start-up.

IFileProvider has two important methods:

  • GetDirectoryContents: Returns IDirectoryContents. This can be used to iterate over files/folders in a directory.
  • GetFileInfo: returns IFileInfo. This can be used to read the file via its CreateReadStream.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here