VOOZH about

URL: https://www.nuget.org/packages/System.IO.Abstractions/

⇱ NuGet Gallery | System.IO.Abstractions 22.1.1




👁 Image
System.IO.Abstractions 22.1.1

dotnet add package System.IO.Abstractions --version 22.1.1
 
 
NuGet\Install-Package System.IO.Abstractions -Version 22.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="System.IO.Abstractions" Version="22.1.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="System.IO.Abstractions" Version="22.1.1" />
 
Directory.Packages.props
<PackageReference Include="System.IO.Abstractions" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add System.IO.Abstractions --version 22.1.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: System.IO.Abstractions, 22.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.
#:package System.IO.Abstractions@22.1.1
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=System.IO.Abstractions&version=22.1.1
 
Install as a Cake Addin
#tool nuget:?package=System.IO.Abstractions&version=22.1.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

👁 NuGet
👁 Build
👁 Quality Gate Status
👁 Coverage
👁 Renovate enabled
👁 FOSSA Status

At the core of the library is IFileSystem and FileSystem. Instead of calling methods like File.ReadAllText directly, use IFileSystem.File.ReadAllText. We have exactly the same API, except that ours is injectable and testable.

Usage

dotnet add package TestableIO.System.IO.Abstractions.Wrappers

Note: This NuGet package is also published as System.IO.Abstractions but we suggest to use the prefix to make clear that this is not an official .NET package.

public class MyComponent
{
 readonly IFileSystem fileSystem;

 // <summary>Create MyComponent with the given fileSystem implementation</summary>
 public MyComponent(IFileSystem fileSystem)
 {
 this.fileSystem = fileSystem;
 }
 /// <summary>Create MyComponent</summary>
 public MyComponent() : this(
 fileSystem: new FileSystem() //use default implementation which calls System.IO
 )
 {
 }

 public void Validate()
 {
 foreach (var textFile in fileSystem.Directory.GetFiles(@"c:\", "*.txt", SearchOption.TopDirectoryOnly))
 {
 var text = fileSystem.File.ReadAllText(textFile);
 if (text != "Testing is awesome.")
 throw new NotSupportedException("We can't go on together. It's not me, it's you.");
 }
 }
}

Test helpers

The library also ships with a series of test helpers to save you from having to mock out every call, for basic scenarios. They are not a complete copy of a real-life file system, but they'll get you most of the way there.

dotnet add package TestableIO.System.IO.Abstractions.TestingHelpers

Note: This NuGet package is also published as System.IO.Abstractions.TestingHelpers but we suggest to use the prefix to make clear that this is not an official .NET package.

[Test]
public void MyComponent_Validate_ShouldThrowNotSupportedExceptionIfTestingIsNotAwesome()
{
 // Arrange
 var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData>
 {
 { @"c:\myfile.txt", new MockFileData("Testing is meh.") },
 { @"c:\demo\jQuery.js", new MockFileData("some js") },
 { @"c:\demo\image.gif", new MockFileData(new byte[] { 0x12, 0x34, 0x56, 0xd2 }) }
 });
 var component = new MyComponent(fileSystem);

 try
 {
 // Act
 component.Validate();
 }
 catch (NotSupportedException ex)
 {
 // Assert
 Assert.That(ex.Message, Is.EqualTo("We can't go on together. It's not me, it's you."));
 return;
 }

 Assert.Fail("The expected exception was not thrown.");
}

We even support casting from the .NET Framework's untestable types to our testable wrappers:

FileInfo SomeApiMethodThatReturnsFileInfo()
{
 return new FileInfo("a");
}

void MyFancyMethod()
{
 var testableFileInfo = (FileInfoBase)SomeApiMethodThatReturnsFileInfo();
 ...
}

Mock support

Since version 4.0 the top-level APIs expose interfaces instead of abstract base classes (these still exist, though), allowing you to completely mock the file system. Here's a small example, using Mockolate:

[Test]
public void Test1()
{
 var watcher = Mock.Create<IFileSystemWatcher>();
 var file = Mock.Create<IFile>();

 file.SetupMock.Method.Exists(It.IsAny<string>()).Returns(true);
 file.SetupMock.Method.ReadAllText(It.IsAny<string>()).Throws<OutOfMemoryException>();

 var unitUnderTest = new SomeClassUsingFileSystemWatcher(watcher, file);

 Assert.Throws<OutOfMemoryException>(() => {
 watcher.RaiseOnMock.Created(null, new System.IO.FileSystemEventArgs(System.IO.WatcherChangeTypes.Created, @"C:\Some\Directory", "Some.File"));
 });

 file.VerifyMock.Invoked.Exists(It.IsAny<string>()).Once();

 Assert.That(unitUnderTest.FileWasCreated, Is.True);
}

public class SomeClassUsingFileSystemWatcher
{
 private readonly IFileSystemWatcher _watcher;
 private readonly IFile _file;

 public bool FileWasCreated { get; private set; }

 public SomeClassUsingFileSystemWatcher(IFileSystemWatcher watcher, IFile file)
 {
 this._file = file;
 this._watcher = watcher;
 this._watcher.Created += Watcher_Created;
 }

 private void Watcher_Created(object sender, System.IO.FileSystemEventArgs e)
 {
 FileWasCreated = true;

 if(_file.Exists(e.FullPath))
 {
 var text = _file.ReadAllText(e.FullPath);
 }
 }
}

Relationship with Testably.Abstractions

Testably.Abstractions is a complementary project that uses the same interfaces as TestableIO. This means no changes to your production code are necessary when switching between the testing libraries.

Both projects share the same maintainer, but active development and new features are primarily focused on the Testably.Abstractions project. TestableIO.System.IO.Abstractions continues to be maintained for stability and compatibility, but significant new functionality is unlikely to be added.

When to use Testably.Abstractions vs TestableIO

  • Use TestableIO.System.IO.Abstractions if you need:

    • Basic file system mocking capabilities
    • Direct manipulation of stored file entities (MockFileData, MockDirectoryData)
    • Established codebase with existing TestableIO integration
  • Use Testably.Abstractions if you need:

    • Advanced testing scenarios (FileSystemWatcher, SafeFileHandles, multiple drives)
    • Additional abstractions (ITimeSystem, IRandomSystem)
    • Cross-platform file system simulation (Linux, MacOS, Windows)
    • More extensive and consistent behavior validation
    • Active development and new features

Migrating from TestableIO

Switching from TestableIO to Testably only requires changes in your test projects:

  1. Replace the NuGet package reference in your test projects:

    
    <PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" />
    
    <PackageReference Include="Testably.Abstractions.Testing" />
    
  2. Update your test code to use the new MockFileSystem:

    // Before (TestableIO)
    var fileSystem = new MockFileSystem();
    fileSystem.AddDirectory("some-directory");
    fileSystem.AddFile("some-file.txt", new MockFileData("content"));
    
    // After (Testably)
    var fileSystem = new MockFileSystem();
    fileSystem.Directory.CreateDirectory("some-directory");
    fileSystem.File.WriteAllText("some-file.txt", "content");
    // or using fluent initialization:
    fileSystem.Initialize()
     .WithSubdirectory("some-directory")
     .WithFile("some-file.txt").Which(f => f
     .HasStringContent("content"));
    

Your production code using IFileSystem remains unchanged.

Other related projects

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 is compatible. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 is compatible.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (374)

Showing the top 5 NuGet packages that depend on System.IO.Abstractions:

Package Downloads
VirtoCommerce.Platform.Core

Virto Commerce is a flexible B2B ecommerce solution that offers powerful tools for enterprise business users. https://virtocommerce.com

Reo.Core.AutoHistory

Package Description

Ghostscript.NET

A C# binding for Ghostscript library

Reo.Core.Database

Package Description

Reo.Core.Testing

Package Description

GitHub repositories (70)

Showing the top 20 popular GitHub repositories that depend on System.IO.Abstractions:

Repository Stars
JosefNemec/Playnite
Video game library manager with support for wide range of 3rd party libraries and game emulation support, providing one unified interface for your games.
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
gitextensions/gitextensions
Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
Readarr/Readarr
Book Manager and Automation (Sonarr for Ebooks)
waf/CSharpRepl
A command line C# REPL with syntax highlighting – explore the language, libraries and nuget packages interactively.
hirschmann/nbfc
NoteBook FanControl
projectkudu/kudu
Kudu is the engine behind git/hg deployments, WebJobs, and various other features in Azure Web Sites. It can also run outside of Azure.
GitTools/GitVersion
From git log to SemVer in no time
dotnet/macios
.NET for iOS, Mac Catalyst, macOS, and tvOS provide open-source bindings of the Apple SDKs for use with .NET managed languages such as C#
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI
jwallet/spy-spotify
🎤 Records Spotify to mp3 without ads and adds media tags to the files 🎵
belav/csharpier
CSharpier is an opinionated code formatter for c#.
rubberduck-vba/Rubberduck
Every programmer needs a rubberduck. COM add-in for the VBA & VB6 IDE (VBE).
Azure/azure-functions-host
The host/runtime that powers Azure Functions
dotnet-outdated/dotnet-outdated
A .NET Core global tool to display and update outdated NuGet packages in a project
Azure/data-api-builder
Data API builder provides modern REST, GraphQL endpoints and MCP tools to your Azure Databases and on-prem stores.
Thraka/SadConsole
A .NET ascii/ansi console engine written in C# for MonoGame and SFML. Create your own text roguelike (or other) games!
VirtoCommerce/vc-platform
Virto Commerce B2B Innovation Platform
Version Downloads Last Updated
22.1.1 773,634 4/9/2026
22.1.0 2,142,779 11/22/2025
22.0.16 1,644,785 9/14/2025
22.0.16-pre.2 210 9/14/2025
22.0.16-pre.1 180 9/13/2025
22.0.15 1,164,922 7/8/2025
22.0.14 2,672,722 4/18/2025
22.0.13 386,937 4/4/2025
22.0.12 822,796 3/13/2025
22.0.11 320,037 3/1/2025
22.0.10 648,811 2/23/2025
22.0.10-beta.1 248 2/22/2025
22.0.9 35,342 2/22/2025
21.3.1 1,250,434 1/29/2025
21.2.12 130,280 1/28/2025
21.2.8 47,843 1/25/2025
21.2.1 1,532,175 12/28/2024
21.1.7 1,283,990 12/3/2024
21.1.3 1,501,271 11/8/2024
21.1.2 25,217 11/8/2024
Loading failed