![]() |
VOOZH | about |
dotnet add package Gapotchenko.FX.IO.Vfs --version 2026.7.2
NuGet\Install-Package Gapotchenko.FX.IO.Vfs -Version 2026.7.2
<PackageReference Include="Gapotchenko.FX.IO.Vfs" Version="2026.7.2" />
<PackageVersion Include="Gapotchenko.FX.IO.Vfs" Version="2026.7.2" />Directory.Packages.props
<PackageReference Include="Gapotchenko.FX.IO.Vfs" />Project file
paket add Gapotchenko.FX.IO.Vfs --version 2026.7.2
#r "nuget: Gapotchenko.FX.IO.Vfs, 2026.7.2"
#:package Gapotchenko.FX.IO.Vfs@2026.7.2
#addin nuget:?package=Gapotchenko.FX.IO.Vfs&version=2026.7.2Install as a Cake Addin
#tool nuget:?package=Gapotchenko.FX.IO.Vfs&version=2026.7.2Install as a Cake Tool
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 static class from Gapotchenko.FX.IO.Vfs module provides access to virtual file system views and utilities for working with them.
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.
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");
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);
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);
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}");
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);
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");
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:
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...
}
Gapotchenko.FX.IO.Vfs.IFileSystemViewGapotchenko.FX.IO.Vfs.IReadOnlyFileSystemViewGapotchenko.FX.IO.Vfs.FileSystemViewLet'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. |
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. |
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 |