VOOZH about

URL: https://www.nuget.org/packages/Gapotchenko.FX.IO.Vfs

⇱ NuGet Gallery | Gapotchenko.FX.IO.Vfs 2026.7.2




👁 Image
Gapotchenko.FX.IO.Vfs 2026.7.2

Prefix Reserved
dotnet add package Gapotchenko.FX.IO.Vfs --version 2026.7.2
 
 
NuGet\Install-Package Gapotchenko.FX.IO.Vfs -Version 2026.7.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="Gapotchenko.FX.IO.Vfs" Version="2026.7.2" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Gapotchenko.FX.IO.Vfs" Version="2026.7.2" />
 
Directory.Packages.props
<PackageReference Include="Gapotchenko.FX.IO.Vfs" />
 
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 Gapotchenko.FX.IO.Vfs --version 2026.7.2
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Gapotchenko.FX.IO.Vfs, 2026.7.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.
#:package Gapotchenko.FX.IO.Vfs@2026.7.2
 
 
#: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=Gapotchenko.FX.IO.Vfs&version=2026.7.2
 
Install as a Cake Addin
#tool nuget:?package=Gapotchenko.FX.IO.Vfs&version=2026.7.2
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Overview

The module provides a virtual file system (VFS) abstraction layer that enables uniform access to different file storage backends, including local file systems, archives, and custom storage formats.

FileSystemView

FileSystemView static class from Gapotchenko.FX.IO.Vfs module provides access to virtual file system views and utilities for working with them.

Local File System

The most common use case is working with the local file system through the virtual file system interface:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;

// Check if a file exists
if (vfs.FileExists("data.txt"))
{
 // Read a file
 using var stream = vfs.ReadFile("data.txt");
 // ... work with stream
}

// Enumerate files
foreach (string file in vfs.EnumerateFiles("C:\\MyFolder", "*.txt"))
 Console.WriteLine(file);

This is very similar to working with local files using System.IO namespace. IFileSystemView interface was specifically designed to be a drop-in replacement.

Working with Files

The module provides a unified interface for file operations:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;

// Read all text from a file
string content = vfs.ReadAllText("data.txt");

// Write text to a file
vfs.WriteAllText("output.txt", "Hello, World!");

// Read all lines
string[] lines = vfs.ReadAllLines("data.txt");

// Copy a file
vfs.CopyFile("source.txt", "destination.txt", overwrite: true);

// Delete a file
vfs.DeleteFile("old.txt");

Working with Directories

Directory operations are also supported:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;

// Check if directory exists
if (vfs.DirectoryExists("MyFolder"))
{
 // Enumerate directories
 foreach (string dir in vfs.EnumerateDirectories("MyFolder"))
 {
 Console.WriteLine(dir);
 }
}

// Create a directory
vfs.CreateDirectory("NewFolder");

// Delete a directory
vfs.DeleteDirectory("OldFolder", recursive: true);

Asynchronous Operations

The module provides comprehensive support for asynchronous file and directory operations, allowing you to perform I/O operations without blocking threads:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;

// Asynchronously read all text from a file
string content = await vfs.ReadAllFileTextAsync("data.txt");

// Asynchronously write text to a file
await vfs.WriteAllFileTextAsync("output.txt", "Hello, World!");

// Asynchronously read all bytes
byte[] data = await vfs.ReadAllFileBytesAsync("binary.dat");

// Asynchronously open a file for reading
using var stream = await vfs.ReadFileAsync("data.txt");

// Asynchronously open a file with specific mode and access
await using var writeStream = await vfs.OpenFileAsync(
 "output.txt", 
 FileMode.Create, 
 FileAccess.Write, 
 FileShare.None);

// Asynchronously copy a file
await vfs.CopyFileAsync("source.txt", "destination.txt". overwrite: true);

// Asynchronously move a file
await vfs.MoveFileAsync("old.txt", "new.txt", overwrite: false);

// Asynchronously delete a file
await vfs.DeleteFileAsync("old.txt");

// Asynchronously create a directory
await vfs.CreateDirectoryAsync("NewFolder");

// Asynchronously delete a directory
await vfs.DeleteDirectoryAsync("OldFolder", recursive: true);

// Asynchronously read file lines
await foreach (string line in vfs.ReadFileLinesAsync("data.txt"))
{
 Console.WriteLine(line);
}

All asynchronous methods support cancellation tokens for cooperative cancellation:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;
var cancellationToken = ...;

// Asynchronously read with cancellation support
string content = await vfs.ReadAllFileTextAsync("data.txt", cancellationToken);

// Asynchronously write with cancellation support
await vfs.WriteAllFileTextAsync("output.txt", "Hello, World!", cancellationToken);

Capabilities

Virtual file system views expose capabilities that indicate what operations are supported:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;

Console.WriteLine($"Can read: {vfs.CanRead}");
Console.WriteLine($"Can write: {vfs.CanWrite}");
Console.WriteLine($"Supports creation time: {vfs.SupportsCreationTime}");
Console.WriteLine($"Supports last write time: {vfs.SupportsLastWriteTime}");
Console.WriteLine($"Supports attributes: {vfs.SupportsAttributes}");

Enforcing Capabilities

You can create a view with enforced capabilities:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;

// Create a read-only view
var readOnlyView = FileSystemView.WithCapabilities(vfs, canRead: true, canWrite: false);

Path Operations

The virtual file system provides path manipulation methods that work consistently across different storage backends:

using Gapotchenko.FX.IO.Vfs;

var vfs = FileSystemView.Local;

// Combine paths
string fullPath = vfs.CombinePaths("folder1", "folder2", "file.txt");

// Get directory name
string? dirName = vfs.GetDirectoryName("C:\\Folder\\File.txt");

// Get file name
string? fileName = vfs.GetFileName("C:\\Folder\\File.txt");

// Get full path
string full = vfs.GetFullPath("relative/path/file.txt");

// Check if path is rooted
bool isRooted = vfs.IsPathRooted("C:\\Folder");

Virtual File Systems

The module is designed to support custom virtual file system implementations. You can implement IFileSystemView or IReadOnlyFileSystemView to create your own file system backend, such as:

  • Archive-based file systems (ZIP, TAR, etc.)
  • Network file systems
  • In-memory file systems
  • Encrypted file systems
  • Versioned file systems

Implementing a Custom File System

To implement a custom virtual file system, you can inherit from VirtualFileSystemKit which provides a base implementation:

using Gapotchenko.FX.IO.Vfs;
using Gapotchenko.FX.IO.Vfs.Kits;

public class MyCustomFileSystem : VirtualFileSystemKit
{
 public override bool CanRead => true;
 public override bool CanWrite => true;

 public override bool FileExists(string? path)
 {
 // Implement your logic
 return false;
 }

 public override Stream ReadFile(string path)
 {
 // Implement your logic
 throw new NotImplementedException();
 }

 // Implement other required methods...
}

Related Modules

Commonly Used Types

  • Gapotchenko.FX.IO.Vfs.IFileSystemView
  • Gapotchenko.FX.IO.Vfs.IReadOnlyFileSystemView
  • Gapotchenko.FX.IO.Vfs.FileSystemView

Other Modules

Let's continue with a look at some other modules provided by Gapotchenko.FX:

Or look at the full list of modules.

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 was computed.  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 (3)

Showing the top 3 NuGet packages that depend on Gapotchenko.FX.IO.Vfs:

Package Downloads
Gapotchenko.FX.Data.Archives

Provides the base infrastructure for data archives that integrate with the virtual file system (VFS) abstraction layer.

Gapotchenko.FX.Data.Archives.Zip

Provides ZIP archive functionality that integrates with the virtual file system (VFS) abstraction layer, allowing you to treat ZIP archives as file systems.

Gapotchenko.FX.IO.FileSystems

Provides the base infrastructure for mountable file system implementations that integrate with the virtual file system (VFS) abstraction layer.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.7.2 285 5/16/2026
2026.6.2 305 3/29/2026
2026.5.3 216 2/24/2026
2026.4.2 210 2/4/2026
2026.3.5 207 1/29/2026
2026.2.2 207 1/25/2026
2026.1.5 227 1/13/2026
2025.1.45 291 12/25/2025
2025.1.27-beta 298 10/8/2025
2025.1.26-beta 346 8/30/2025
2025.1.25-beta 1,015 7/22/2025
2025.1.24-beta 505 7/16/2025
2025.1.23-beta 376 7/12/2025