VirtualFileSystem

Atypical.VirtualFileSystem.Core

Atypical.VirtualFileSystem.Core.BinaryFileNode

BinaryFileNode Constructors

Overloads  
BinaryFileNode(VFSFilePath, byte[]) Initializes a new instance of the BinaryFileNode class with binary content.
BinaryFileNode(VFSFilePath, string) Initializes a new instance of the BinaryFileNode class.

BinaryFileNode(VFSFilePath, byte[]) Constructor

Initializes a new instance of the BinaryFileNode class with binary content.

public BinaryFileNode(Atypical.VirtualFileSystem.Core.VFSFilePath filePath, byte[]? binaryContent);

Parameters

filePath VFSFilePath

The file path.

binaryContent System.Byte[]

The binary content of the file.

BinaryFileNode(VFSFilePath, string) Constructor

Initializes a new instance of the BinaryFileNode class.

public BinaryFileNode(Atypical.VirtualFileSystem.Core.VFSFilePath filePath, string? content=null);

Parameters

filePath VFSFilePath

The file path.

content System.String

The text content of the file.