CatLib.FileSystem 0.8.2

dotnet add package CatLib.FileSystem --version 0.8.2
NuGet\Install-Package CatLib.FileSystem -Version 0.8.2
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="CatLib.FileSystem" Version="0.8.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CatLib.FileSystem --version 0.8.2
#r "nuget: CatLib.FileSystem, 0.8.2"
#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 CatLib.FileSystem as a Cake Addin
#addin nuget:?package=CatLib.FileSystem&version=0.8.2

// Install CatLib.FileSystem as a Cake Tool
#tool nuget:?package=CatLib.FileSystem&version=0.8.2

CatLib 抽象文件系统是文件系统的抽象库。 通过为许多不同的文件系统提供统一的接口,您可以在没有不进行任何代码重写和改动的的情况下变更文件系统。

使用CatLib抽象文件系统,您可以降低研发难度,提高代码的可测试性和重用性。

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
0.8.2 887 10/15/2018
0.8.1 748 10/9/2018
0.8.0 710 9/30/2018

- 增加统一的异常处理和错误码
- Http在传输时会传递IF-Match
- 增加HTTP基类,用于实现一些通用的函数方法
- 重构了HTTP抽象磁盘
- 同步了`CatLib.Core (1.2.11)` 版本
- 修复了FileSystem层面下 `Move/Copy` 不支持文件夹的问题
- 增加了事件支持:
-- OnBeforeWriting : 在写入之前
-- OnAfterWriting : 在写入之后
-- OnBeforeReading : 在读取之前
-- OnAfterReading : 在读取之后
-- OnBeforeDeleting : 在删除完成之前
-- OnAfterDeleting : 在删除完成之后