Microsoft.Extensions.FileProviders.Physical
9.0.0-rc.2.24473.5
Prefix Reserved
dotnet add package Microsoft.Extensions.FileProviders.Physical --version 9.0.0-rc.2.24473.5
NuGet\Install-Package Microsoft.Extensions.FileProviders.Physical -Version 9.0.0-rc.2.24473.5
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="9.0.0-rc.2.24473.5" />
paket add Microsoft.Extensions.FileProviders.Physical --version 9.0.0-rc.2.24473.5
#r "nuget: Microsoft.Extensions.FileProviders.Physical, 9.0.0-rc.2.24473.5"
// Install Microsoft.Extensions.FileProviders.Physical as a Cake Addin #addin nuget:?package=Microsoft.Extensions.FileProviders.Physical&version=9.0.0-rc.2.24473.5&prerelease // Install Microsoft.Extensions.FileProviders.Physical as a Cake Tool #tool nuget:?package=Microsoft.Extensions.FileProviders.Physical&version=9.0.0-rc.2.24473.5&prerelease
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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Primitives (>= 9.0.0-rc.2.24473.5)
-
.NETStandard 2.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Primitives (>= 9.0.0-rc.2.24473.5)
-
net8.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Primitives (>= 9.0.0-rc.2.24473.5)
-
net9.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Primitives (>= 9.0.0-rc.2.24473.5)
NuGet packages (340)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.FileProviders.Physical:
Package | Downloads |
---|---|
Microsoft.Extensions.Configuration.FileExtensions
Provides a base class for file-based configuration providers used with Microsoft.Extensions.Configuration and extension methods for configuring them. |
|
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration. User secrets mechanism enables you to override application configuration settings with values stored in the local secrets file. You can use UserSecretsConfigurationExtensions.AddUserSecrets extension method on IConfigurationBuilder to add user secrets provider to the configuration builder. |
|
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications. |
|
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 |
|
Microsoft.AspNetCore.Diagnostics
ASP.NET Core middleware for exception handling, exception display pages, and diagnostics information. Includes developer exception page middleware, exception handler middleware, runtime info middleware, status code page middleware, and welcome page middleware This package was built from the source code at https://github.com/aspnet/Diagnostics/tree/c802d5ef5fba1ba8dfbcb8c3741af2ba15e9d1aa |
GitHub repositories (86)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.FileProviders.Physical:
Repository | Stars |
---|---|
BeyondDimension/SteamTools
🛠「Watt Toolkit」是一个开源跨平台的多功能 Steam 工具箱。
|
|
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
JeffreySu/WeiXinMPSDK
微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
|
|
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 45,635 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 64,482 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 43,259 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 51,271 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 43,361 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 39,081 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 135,714 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 45,523 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 79,342 | 2/13/2024 | |
8.0.0 | 99,360,854 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 284,126 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 239,163 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 144,602 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 120,233 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 100,945 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 261,732 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 205,294 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 74,764 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 144,892 | 2/21/2023 | |
7.0.0 | 116,195,413 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 210,640 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 154,720 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 208,594 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 105,038 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 73,056 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 110,958 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 66,891 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 61,281 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 50,673 | 2/17/2022 | |
6.0.0 | 273,572,385 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 552,754 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 372,507 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 215,105 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 131,334 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 79,909 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 59,962 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 205,637 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 124,729 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 138,042 | 2/12/2021 | |
5.0.0 | 177,366,259 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 262,635 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 348,475 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 73,896 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 135,522 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 59,820 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 294,197 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 124,317 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 48,641 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 125,823 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 60,937 | 3/16/2020 | |
3.1.32 | 2,796,419 | 12/13/2022 | |
3.1.31 | 830,905 | 11/8/2022 | |
3.1.30 | 1,664,603 | 10/11/2022 | |
3.1.29 | 771,302 | 9/13/2022 | |
3.1.28 | 620,832 | 8/9/2022 | |
3.1.27 | 591,327 | 7/12/2022 | |
3.1.26 | 501,585 | 6/14/2022 | |
3.1.25 | 882,792 | 5/10/2022 | |
3.1.24 | 10,154,513 | 4/11/2022 | |
3.1.23 | 2,906,488 | 3/8/2022 | |
3.1.22 | 12,504,072 | 12/14/2021 | |
3.1.21 | 4,406,319 | 11/7/2021 | |
3.1.20 | 2,114,370 | 10/11/2021 | |
3.1.19 | 2,009,646 | 9/14/2021 | |
3.1.18 | 3,780,869 | 8/10/2021 | |
3.1.17 | 3,231,194 | 7/13/2021 | |
3.1.16 | 3,558,665 | 6/8/2021 | |
3.1.15 | 4,037,927 | 5/11/2021 | |
3.1.14 | 5,970,152 | 4/6/2021 | |
3.1.13 | 6,757,832 | 3/9/2021 | |
3.1.12 | 4,771,725 | 2/9/2021 | |
3.1.11 | 6,132,795 | 1/12/2021 | |
3.1.10 | 13,824,404 | 11/9/2020 | |
3.1.9 | 15,751,646 | 10/13/2020 | |
3.1.8 | 20,972,363 | 9/8/2020 | |
3.1.7 | 14,007,749 | 8/11/2020 | |
3.1.6 | 22,539,696 | 7/14/2020 | |
3.1.5 | 23,664,160 | 6/9/2020 | |
3.1.4 | 14,755,519 | 5/12/2020 | |
3.1.3 | 24,720,179 | 3/24/2020 | |
3.1.2 | 20,643,651 | 2/18/2020 | |
3.1.1 | 16,360,904 | 1/14/2020 | |
3.1.0 | 138,607,498 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 93,648 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 20,669 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 48,373 | 10/15/2019 | |
3.0.3 | 690,586 | 2/18/2020 | |
3.0.2 | 817,345 | 1/14/2020 | |
3.0.1 | 2,848,372 | 11/18/2019 | |
3.0.0 | 29,591,923 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 45,597 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 251,396 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 237,796 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 226,517 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 592,621 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 223,050 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 38,924 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 200,478 | 3/6/2019 | |
3.0.0-preview.19074.2 | 132,435 | 1/29/2019 | |
3.0.0-preview.18572.1 | 46,398 | 12/4/2018 | |
2.2.0 | 201,696,953 | 12/3/2018 | |
2.2.0-preview3-35497 | 300,118 | 10/17/2018 | |
2.2.0-preview2-35157 | 153,331 | 9/12/2018 | |
2.2.0-preview1-35029 | 82,982 | 8/22/2018 | |
2.1.1 | 226,437,175 | 6/18/2018 | |
2.1.0 | 246,484,079 | 5/29/2018 | |
2.1.0-rc1-final | 311,093 | 5/6/2018 | |
2.1.0-preview2-final | 417,400 | 4/10/2018 | |
2.1.0-preview1-final | 1,696,684 | 2/26/2018 | |
2.0.1 | 36,002,447 | 3/13/2018 | |
2.0.0 | 84,461,448 | 8/11/2017 | |
2.0.0-preview2-final | 468,138 | 6/28/2017 | |
2.0.0-preview1-final | 192,405 | 5/10/2017 | |
1.1.1 | 21,813,738 | 5/9/2017 | |
1.1.0 | 15,170,914 | 11/16/2016 | |
1.1.0-preview1-final | 68,562 | 10/24/2016 | |
1.0.1 | 91,683,529 | 12/12/2016 | |
1.0.0 | 20,595,692 | 6/27/2016 | |
1.0.0-rc2-final | 1,883,168 | 5/16/2016 |