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
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.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 |
.NET Framework 4.6.2
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Primitives (>= 9.0.0)
.NET 8.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Primitives (>= 9.0.0)
.NET 9.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Primitives (>= 9.0.0)
.NET Standard 2.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Primitives (>= 9.0.0)