Ramstack.FileSystem.Adapters 1.1.1

dotnet add package Ramstack.FileSystem.Adapters --version 1.1.1                
NuGet\Install-Package Ramstack.FileSystem.Adapters -Version 1.1.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ramstack.FileSystem.Adapters" Version="1.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ramstack.FileSystem.Adapters --version 1.1.1                
#r "nuget: Ramstack.FileSystem.Adapters, 1.1.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Ramstack.FileSystem.Adapters as a Cake Addin
#addin nuget:?package=Ramstack.FileSystem.Adapters&version=1.1.1

// Install Ramstack.FileSystem.Adapters as a Cake Tool
#tool nuget:?package=Ramstack.FileSystem.Adapters&version=1.1.1                

Ramstack.FileSystem.Adapters

Provides an implementation of Ramstack.FileSystem for integrating with Microsoft.Extensions.FileProviders.

Getting Started

To install the Ramstack.FileSystem.Adapters NuGet package in your project, run the following command:

dotnet add package Ramstack.FileSystem.Adapters

Usage

using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.FileProviders.Physical;
using Ramstack.FileSystem.Adapters;

// Create a physical file provider that points to the specified directory
IFileProvider provider = new PhysicalFileProvider(@"C:\path");

// Create a virtual file system adapter that wraps the physical file provider.
//
// An added benefit is that now information about the entire file hierarchy is available
// for files and directories provided by the underlying provider.
IVirtualFileSystem fs = new VirtualFileSystemAdapter(provider);

await foreach (VirtualFile file in fs.GetFilesAsync("/"))
{
    Console.WriteLine(file.FullName);
}

Supported versions

Version
.NET 6, 7, 8

Contributions

Bug reports and contributions are welcome.

License

This package is released as open source under the MIT License. See the LICENSE file for more details.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1 115 9/14/2024
1.1.0 91 9/14/2024
1.0.1 104 9/13/2024
1.0.0 93 9/13/2024
1.0.0-preview.9 53 9/10/2024
1.0.0-preview.8 53 9/5/2024
1.0.0-preview.7 48 9/4/2024
1.0.0-preview.6 57 9/3/2024
1.0.0-preview.5 46 8/30/2024
1.0.0-preview.4 73 8/24/2024
1.0.0-preview.3 71 8/22/2024
1.0.0-preview.2 68 8/21/2024
1.0.0-preview.1 55 8/20/2024