Microsoft.Extensions.FileProviders.Physical 9.0.0

About

Provides an implementation of a physical file provider, facilitating file access and monitoring on the disk. The primary type, PhysicalFileProvider, enables the lookup of files on disk and can watch for changes either via FileSystemWatcher or polling mechanisms.

Key Features

  • Easy access and monitoring of files on the disk.
  • Ability to watch for file changes either by using FileSystemWatcher or through polling.

How to Use

This library can be used to look up files on disk and monitor file changes effectively. Below is an example of how to use the PhysicalFileProvider to access files on disk and monitor changes:

using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.FileProviders.Physical;

using var provider = new PhysicalFileProvider(AppContext.BaseDirectory);

Environment.SetEnvironmentVariable("DOTNET_USE_POLLING_FILE_WATCHER", "1");

var contents = provider.GetDirectoryContents(string.Empty);
foreach (PhysicalFileInfo fileInfo in contents)
{
    Console.WriteLine(fileInfo.PhysicalPath);
}

var changeToken = provider.Watch("*.txt");
changeToken.RegisterChangeCallback(_ => Console.WriteLine("Text file changed"), null);

Console.ReadLine();

Main Types

The main types provided by this library are:

  • Microsoft.Extensions.FileProviders.PhysicalFileProvider
  • Microsoft.Extensions.FileProviders.PhysicalDirectoryInfo
  • Microsoft.Extensions.FileProviders.PhysicalFileInfo

Additional Documentation

Feedback & Contributing

Microsoft.Extensions.FileProviders.Physical is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on Microsoft.Extensions.FileProviders.Physical.

Packages Downloads
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/be0a4a7f4cf06cbd6ec714bd1d9afee6bdb040a8
77
Microsoft.AspNetCore.Mvc.Razor.Host
ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.
68
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
66
Microsoft.AspNetCore.Mvc.Razor.Host
ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.
62
Microsoft.AspNetCore.Mvc.Razor.Host
ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.
60
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
54
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
52
Microsoft.Extensions.Configuration.FileExtensions
Extension methods for configuring file-based configuration providers for Microsoft.Extensions.Configuration.
49
Microsoft.AspNetCore.Mvc.Razor.Host
ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.
48
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
48
Microsoft.Extensions.Configuration.FileExtensions
Extension methods for configuring file-based configuration providers for Microsoft.Extensions.Configuration.
48
Microsoft.Extensions.Configuration.FileExtensions
Extension methods for configuring file-based configuration providers for Microsoft.Extensions.Configuration.
47
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications. This package was built from the source at: https://github.com/aspnet/Hosting/tree/27e4e1aca3863389098b9be6dd9c5b7c030180b8
46
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications. This package was built from the source at: https://github.com/aspnet/Hosting/tree/687a99438a1a596a11b7dbd0bf9da5035b3b74eb
45
Microsoft.Extensions.Configuration.FileExtensions
Extension methods for configuring file-based configuration providers for Microsoft.Extensions.Configuration.
45
Microsoft.AspNetCore.Mvc.Razor.Host
ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.
45
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
45

Version Downloads Last updated
9.0.0 6 11/17/2024
9.0.0-rc.2.24473.5 8 10/12/2024
9.0.0-rc.1.24431.7 15 9/12/2024
9.0.0-preview.7.24405.7 17 8/16/2024
9.0.0-preview.6.24327.7 20 7/10/2024
9.0.0-preview.5.24306.7 14 6/20/2024
9.0.0-preview.4.24266.19 16 5/24/2024
9.0.0-preview.3.24172.9 17 4/13/2024
9.0.0-preview.2.24128.5 18 3/25/2024
9.0.0-preview.1.24080.9 19 3/1/2024
8.0.0 27 11/17/2023
8.0.0-rc.2.23479.6 21 10/23/2023
8.0.0-rc.1.23419.4 29 9/15/2023
8.0.0-preview.7.23375.6 28 8/22/2023
8.0.0-preview.6.23329.7 23 7/31/2023
8.0.0-preview.5.23280.8 27 7/31/2023
8.0.0-preview.4.23259.5 31 5/20/2023
8.0.0-preview.3.23174.8 27 5/12/2023
8.0.0-preview.2.23128.3 35 3/30/2023
8.0.0-preview.1.23110.8 28 2/23/2023
7.0.0 36 11/17/2022
7.0.0-rc.2.22472.3 29 12/3/2022
7.0.0-rc.1.22426.10 44 9/15/2022
7.0.0-preview.7.22375.6 33 9/15/2022
7.0.0-preview.6.22324.4 32 7/31/2022
7.0.0-preview.5.22301.12 36 6/27/2022
7.0.0-preview.4.22229.4 42 7/1/2022
7.0.0-preview.3.22175.4 33 7/1/2022
7.0.0-preview.2.22152.2 32 7/1/2022
7.0.0-preview.1.22076.8 35 7/1/2022
6.0.2-mauipre.1.22102.15 34 7/1/2022
6.0.2-mauipre.1.22054.8 30 7/3/2022
6.0.1 6 11/18/2024
6.0.0 38 7/3/2022
6.0.0-rc.2.21480.5 28 7/3/2022
6.0.0-rc.1.21451.13 28 7/3/2022
6.0.0-preview.7.21377.19 37 7/3/2022
6.0.0-preview.6.21352.12 37 7/3/2022
6.0.0-preview.5.21301.5 30 7/3/2022
6.0.0-preview.4.21253.7 33 7/3/2022
6.0.0-preview.3.21201.4 35 7/3/2022
6.0.0-preview.2.21154.6 34 7/3/2022
6.0.0-preview.1.21102.12 36 7/3/2022
5.0.0 32 7/3/2022
5.0.0-rc.2.20475.5 34 7/3/2022
5.0.0-rc.1.20451.14 38 7/3/2022
5.0.0-preview.8.20407.11 39 7/3/2022
5.0.0-preview.7.20364.11 36 7/3/2022
5.0.0-preview.6.20305.6 32 7/3/2022
5.0.0-preview.5.20278.1 36 7/3/2022
5.0.0-preview.4.20251.6 35 7/3/2022
5.0.0-preview.3.20215.2 32 7/3/2022
5.0.0-preview.2.20160.3 34 7/3/2022
5.0.0-preview.1.20120.4 36 7/3/2022
3.1.32 32 2/21/2023
3.1.31 39 11/14/2022
3.1.30 38 10/15/2022
3.1.29 34 9/15/2022
3.1.28 38 8/30/2022
3.1.27 44 9/14/2022
3.1.26 35 7/3/2022
3.1.25 37 7/3/2022
3.1.24 41 7/3/2022
3.1.23 38 7/3/2022
3.1.22 31 7/3/2022
3.1.21 36 7/3/2022
3.1.20 40 7/3/2022
3.1.19 37 7/3/2022
3.1.18 38 7/3/2022
3.1.17 39 7/3/2022
3.1.16 33 7/3/2022
3.1.15 35 7/3/2022
3.1.14 48 7/3/2022
3.1.13 39 7/3/2022
3.1.12 36 7/3/2022
3.1.11 37 7/3/2022
3.1.10 39 7/3/2022
3.1.9 40 7/3/2022
3.1.8 37 7/3/2022
3.1.7 32 7/3/2022
3.1.6 45 7/3/2022
3.1.5 46 7/3/2022
3.1.4 36 7/3/2022
3.1.3 41 7/3/2022
3.1.2 43 7/3/2022
3.1.1 37 7/3/2022
3.1.0 35 7/3/2022
3.1.0-preview3.19553.2 33 7/3/2022
3.1.0-preview2.19525.4 39 7/3/2022
3.1.0-preview1.19506.1 41 7/3/2022
3.0.3 44 7/3/2022
3.0.2 35 7/3/2022
3.0.1 35 7/3/2022
3.0.0 35 7/3/2022
3.0.0-rc1.19456.10 36 7/1/2022
3.0.0-preview9.19423.4 33 7/1/2022
3.0.0-preview8.19405.4 39 7/1/2022
3.0.0-preview7.19362.4 31 7/1/2022
3.0.0-preview6.19304.6 35 7/1/2022
3.0.0-preview5.19227.9 38 7/1/2022
3.0.0-preview4.19216.2 35 7/1/2022
3.0.0-preview3.19153.1 36 7/1/2022
3.0.0-preview.19074.2 37 7/1/2022
3.0.0-preview.18572.1 34 7/1/2022
2.2.0 41 7/1/2022
2.2.0-preview3-35497 36 7/1/2022
2.2.0-preview2-35157 44 7/1/2022
2.2.0-preview1-35029 40 7/1/2022
2.1.1 35 7/1/2022
2.1.0 40 7/1/2022
2.1.0-rc1-final 33 7/1/2022
2.1.0-preview2-final 36 7/1/2022
2.1.0-preview1-final 33 7/1/2022
2.0.1 36 7/1/2022
2.0.0 36 7/1/2022
2.0.0-preview2-final 36 7/1/2022
2.0.0-preview1-final 34 7/1/2022
1.1.1 32 7/1/2022
1.1.0 41 7/1/2022
1.1.0-preview1-final 40 7/1/2022
1.0.1 38 7/1/2022
1.0.0 37 7/1/2022
1.0.0-rc2-final 33 7/1/2022