lazebird.rabbit.fs 2.1.2

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

// Install lazebird.rabbit.fs as a Cake Tool
#tool nuget:?package=lazebird.rabbit.fs&version=2.1.2

文件操作

描述

  • 实现了部分文件系统相关接口

目标

API

  1. public rfs(Action<string> log)

    • 构造函数
    • log: log打印接口
    • fhash: 虚拟系统文件哈希表
    • dhash: 虚拟系统目录哈希表
  2. public int addfile(string vdir, string rfile)

    • 添加一个文件到虚拟文件系统
    • vdir: 虚拟系统目录路径
    • rfile: 文件真实路径
  3. public int delfile(string vfile)

    • 从虚拟文件系统中删除一个文件
    • vfile: 虚拟系统文件路径
  4. public int adddir(string vdir, string rdir)

    • 添加一个目录到虚拟文件系统
    • vdir: 虚拟系统目录路径
    • rdir: 目录真实路径
  5. public int deldir(string vdir)

    • 从虚拟文件系统中删除一个目录
    • vdir: 虚拟系统目录路径
  6. public static void readstream(Stream fs, rqueue q, int maxblksz)

    • 读输入流并保存到队列
    • fs: 输入流
    • q: 资源队列,用于保存读取的数据
    • maxblksz: 读取/保存的块大小
  7. public static void writestream(Stream output, rqueue q, string filename)

    • 将队列数据写入到输出流
    • output: 输出流
    • q: 资源队列,保存了数据
    • path: 文件路径/输出流信息,仅用作打印显示

示例

```
void file_load(HttpListenerResponse response, string path)
{
    Stream output = response.OutputStream;
    response.ContentType = get_mime(get_suffix(path));
    //log("Info: response suffix " + get_suffix(uri) + " ContentType " + response.ContentType);
    FileStream fs = new FileStream((string)((rfile)fhash[path]).path, FileMode.Open, FileAccess.Read);
    response.ContentLength64 = fs.Length;
    rqueue q = new rqueue(10); // 10 * 10M, max memory used 100M
    new Thread(() => rfs.readstream(fs, q, 10000000)).Start();    // 10000000, max block size 10M
    new Thread(() => rfs.writestream(output, q, fs.Name)).Start();
}
```
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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.2 616 7/8/2019
2.1.1 736 9/11/2018
2.1.0 814 8/15/2018
2.0.9 812 7/31/2018
2.0.5 799 7/26/2018
2.0.3 787 7/23/2018

support add/del file/dir in virtual file system, support rqueue and rshell