Microsoft.Extensions.FileProviders.Physical 10.0.0-rc.2.25502.107
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 
FileSystemWatcheror 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.PhysicalFileProviderMicrosoft.Extensions.FileProviders.PhysicalDirectoryInfoMicrosoft.Extensions.FileProviders.PhysicalFileInfo
Additional Documentation
Related Packages
- Abstractions of files and directories: Microsoft.Extensions.FileProviders.Abstractions
 - File system globbing to find files matching a specified pattern: Microsoft.Extensions.FileSystemGlobbing
 
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.Mvc.Razor.Host
                                                     ASP.NET Core MVC design time hosting infrastructure for the Razor view engine. 
                                                 | 
                                                157 | 
| 
                                                    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 
                                                 | 
                                                148 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                124 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                119 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                117 | 
| 
                                                    Microsoft.AspNetCore.Mvc.Razor.Host
                                                     ASP.NET Core MVC design time hosting infrastructure for the Razor view engine. 
                                                 | 
                                                113 | 
| 
                                                    Microsoft.AspNetCore.Mvc.Razor.Host
                                                     ASP.NET Core MVC design time hosting infrastructure for the Razor view engine. 
                                                 | 
                                                112 | 
| 
                                                    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 
                                                 | 
                                                112 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                109 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                107 | 
| 
                                                    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 
                                                 | 
                                                106 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                106 | 
| 
                                                    Microsoft.AspNetCore.Mvc.Razor.Host
                                                     ASP.NET Core MVC design time hosting infrastructure for the Razor view engine. 
                                                 | 
                                                106 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                105 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                104 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                103 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                102 | 
| 
                                                    Microsoft.AspNetCore.Hosting
                                                     ASP.NET Core hosting infrastructure and startup logic for web applications. 
                                                 | 
                                                101 | 
.NET Framework 4.6.2
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.FileSystemGlobbing (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.Primitives (>= 10.0.0-rc.2.25502.107)
 
.NET 8.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.FileSystemGlobbing (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.Primitives (>= 10.0.0-rc.2.25502.107)
 
.NET 9.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.FileSystemGlobbing (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.Primitives (>= 10.0.0-rc.2.25502.107)
 
.NET 10.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.FileSystemGlobbing (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.Primitives (>= 10.0.0-rc.2.25502.107)
 
.NET Standard 2.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.FileSystemGlobbing (>= 10.0.0-rc.2.25502.107)
 - Microsoft.Extensions.Primitives (>= 10.0.0-rc.2.25502.107)