EQXMedia.TxFileSystem 1.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package EQXMedia.TxFileSystem --version 1.0.0
NuGet\Install-Package EQXMedia.TxFileSystem -Version 1.0.0
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="EQXMedia.TxFileSystem" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EQXMedia.TxFileSystem --version 1.0.0
#r "nuget: EQXMedia.TxFileSystem, 1.0.0"
#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 EQXMedia.TxFileSystem as a Cake Addin
#addin nuget:?package=EQXMedia.TxFileSystem&version=1.0.0

// Install EQXMedia.TxFileSystem as a Cake Tool
#tool nuget:?package=EQXMedia.TxFileSystem&version=1.0.0

TxFileSystem

TxFileSystem is a transactional filesystem wrapper using the .NET Core filesystem abstraction from System.IO.Abstractions.

This filesystem wrapper supports transactional operations on:

  • Files,
  • Directories,
  • Filestreams.

Code Example


/**
*
* Because an error occurs inside the transaction scope, the creation of the file will not take place
* (or better said be rolled back):
*
* txFileSystem.File.Exists(@"C:\Users\JohnDoe\Documents\example.txt");
*
* Would simply return 'false' after execution of the below code.
*
**/

using var transactionScope = TransactionScope();

var fileSystem = new FileSystem();
var txFileSystem = new TxFileSystem(fileSystem);
txFileSystem.File.Create(@"C:\Users\JohnDoe\Documents\example.txt");

throw new Exception("Error occurs after creating the file. Resulting in the creation to be rolled back.");

transactionScope.Complete();

Product 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 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
2.1.1 356 1/5/2022
2.1.0 462 12/29/2021
2.0.2 300 5/19/2021
2.0.1 545 5/1/2021
2.0.0 532 4/27/2021
1.3.0 301 4/16/2021
1.2.0 297 4/10/2021
1.1.1 299 4/8/2021
1.1.0 909 4/8/2021
1.0.0 279 4/7/2021

Version 1.0-alpha
------------------
* Providing a System.IO.Abstractions filesystem wrapper.
* Can be used to wrap any filesystem that implements the IFileSystem interface.
* Support transactional operations on:
 * Files,
 * Directories,
 * Filestreams.
 * Plain proxy functionality for all remaining parts of the System.IO.Abstractions interfaces.
* Fully covered by Unit Tests (100% code coverage).