Atypical.VirtualFileSystem 0.1.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package Atypical.VirtualFileSystem --version 0.1.4
NuGet\Install-Package Atypical.VirtualFileSystem -Version 0.1.4
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="Atypical.VirtualFileSystem" Version="0.1.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Atypical.VirtualFileSystem --version 0.1.4
#r "nuget: Atypical.VirtualFileSystem, 0.1.4"
#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 Atypical.VirtualFileSystem as a Cake Addin
#addin nuget:?package=Atypical.VirtualFileSystem&version=0.1.4

// Install Atypical.VirtualFileSystem as a Cake Tool
#tool nuget:?package=Atypical.VirtualFileSystem&version=0.1.4

<div align="center"> <img src="https://raw.githubusercontent.com/Atypical-Consulting/VirtualFileSystem/main/Logo.png" alt="Virtual File System Logo" width="200" height="200"> <h1>Virtual File System</h1> </div> <p align="center">A virtual file system implementation in modern C#.</p>


<div align="center">

Atypical-Consulting - VirtualFileSystem License: BSD-3-Clause stars - VirtualFileSystem forks - VirtualFileSystem

GitHub tag issues - VirtualFileSystem GitHub pull requests GitHub contributors GitHub last commit codecov

NuGet NuGet </div>


📝 Table of Contents

📖 Introduction

When writing applications in .NET, you often need to write or read the contents of a file. .NET provides System.IO namespace dedicated to this purpose. But how do we deal with the filesystem when testing our code?

Virtual File System is an attempt to solve this problem. Currently, this library is at an early stage of development. If you need additional functionality, I invite you to open an issue to discuss it.

🧐 What is a virtual file system and why should I use it?

A virtual file system is a data structure that represents a file system in memory. It is used to simulate a file system on a computer. It is useful for testing purposes, for example, when you want to test a file system without actually creating files on the hard drive.

📌 Features

  • Create a virtual file system
  • Create a virtual file or directory
  • Print the contents of a virtual file system as a tree
  • ...

📄 Documentation

Virtual File System provides a COMPLETE DOCUMENTATION of the library.

All summaries are written in English. If you want to help us translate the documentation, please open an issue to discuss it.

Note: The documentation is generated using Doraku/DefaultDocumentation tool. It is generated automatically when the project is built.

📥 Installation

📋 Prerequisites

  • .NET 6.0
  • A C# IDE (Visual Studio, Rider, etc.)
  • A C# compiler (dotnet CLI, etc.)

🚀 We use the latest C# features

This library targets .NET 7.0 and uses the latest C# features. It is written in C# 11.0 and uses the new init properties, record types, switch expressions, using declarations, and more.

I invite you to read the C# 11.0 documentation to learn more about these features.

📦 NuGet

VirtualFileSystem is available on NuGet.

You can install it using the .NET Core CLI:

dotnet add package Atypical.VirtualFileSystem

or by adding a package reference to your project file:

<PackageReference Include="Atypical.VirtualFileSystem" Version="0.1.4" />

📁 From source

You can also clone the repository and build the project yourself.

git clone
cd VirtualFileSystem
dotnet build

📚 Use cases

Creating a virtual file system, add some files and print the content as an ASCII tree

// sample output (the order of the files is alphabetical)
string expected = """
    vfs://
    ├── superheroes
    │   ├── batman.txt
    │   ├── superman.txt
    │   └── wonderwoman.txt
    ├── villains
    │   ├── joker.txt
    │   ├── lexluthor.txt
    │   └── penguin.txt
    └── world
        ├── gotham.txt
        ├── metropolis.txt
        └── themyscira.txt
    """;

// create a virtual file system
IVirtualFileSystem vfs = new VFS()
    // add some files (directories are created automatically)
    .CreateFile("superheroes/batman.txt")
    .CreateFile("superheroes/superman.txt")
    .CreateFile("superheroes/wonderwoman.txt")
    .CreateFile("villains/joker.txt")
    .CreateFile("villains/lexluthor.txt")
    .CreateFile("villains/penguin.txt")
    .CreateFile("world/gotham.txt")
    .CreateFile("world/metropolis.txt")
    .CreateFile("world/themyscira.txt");

// get the string representation of the virtual file system
string tree = vfs.ToString();

🤝 Contributing

Contributions are welcome! Please read the CONTRIBUTION GUIDELINES first.

📜 License

This project is licensed under the terms of the BSD-3-Clause license. If you use this library in your project, please consider adding a link to this repository in your project's README.

This project is maintained by Atypical Consulting. If you need help with this project, please contact us from this repository by opening an issue.

📬 Contact

You can contact us by opening an issue on this repository.

🙌 Acknowledgements

🎉 Change log

Please see CHANGELOG for more information what has changed recently.

✨ Contributors

Contributors

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
0.3.0 213 11/21/2023
0.2.0 82 11/20/2023
0.1.7 197 3/16/2023
0.1.6 191 3/11/2023
0.1.5 185 3/11/2023
0.1.4 229 2/4/2023
0.1.3 231 2/4/2023
0.1.2 290 12/2/2022
0.1.1 281 11/30/2022
0.1.0 273 11/30/2022

## Changes
           - Add Directories and Files to IDirectoryNode.cs @phmatray (#28)
           - Remove the dependency to Root in VFSIndex @phmatray (#27)
           - Fix node creation in VFS.cs @phmatray (#26)