Skip to content

maurosoft1973/FileSystem

Repository files navigation

Maurosoft FileSystem NuGet

Builds

FileSystem [Build] FileSystem [Sonarqube]

Quality Gate Status Code Smells Lines of Code Coverage Technical Debt Reliability Rating Duplicated Lines (%) Vulnerabilities Bugs Security Rating Maintainability Rating

Introduction

Maurosoft FileSystem is a file system abstraction supporting multiple adapters.

Installation

Reference NuGet package Maurosoft.FileSystem (https://www.nuget.org/packages/Maurosoft.FileSystem).

For adapters other than the local file system (included in the Maurosoft.FileSystem package) please see the Supported adapters section.

Supported adapters

Adapter Package NuGet
Local adapter Maurosoft.FileSystem NuGet
FTP Maurosoft.FileSystem.Adapters.Ftp NuGet
Memory Maurosoft.FileSystem.Adapters.Memory NuGet
SFTP Maurosoft.FileSystem.Adapters.Sftp NuGet

Supported operations

For a full list of the supported operations please see the IFileSystem interface.

Usage

Instantiation

var adapters = new List<IAdapter>
{
    new LocalAdapter("adapterPrefix", "adapterRootPath")
};

// Instantiation option 1.
var fileSystem = new FileSystem(adapters);

// Instantiation option 2.
var fileSystem = new FileSystem();
fileSystem.Adapters = adapters;

Local adapter

var adapters = new List<IAdapter>
{
    new LocalAdapter("local1", "/var/files"),
    new LocalAdapter("local2", "D:\\Files")
};

var fileSystem = new FileSystem(adapters);

Memory adapter

var adapters = new List<IAdapter>
{
    new MemoryAdapter("memory1", "/"),
    new MemoryAdapter("memory2", "/")
};

var fileSystem = new FileSystem(adapters);

FTP adapter

var ftpClient = new FtpClient("hostName", "userName", "password");

var adapters = new List<IAdapter>
{
    new LocalAdapter("local", "/var/files"),
    new FtpAdapter("ftpAdapter1", "/", ftpClient),
};

var fileSystem = new FileSystem(adapters);

SFTP adapter

// SFTP connection.
var privateKeyFile = new PrivateKeyFile("/home/userName/.ssh/id_rsa");
var privateKeyAuthenticationMethod = new PrivateKeyAuthenticationMethod("userName", privateKeyFile);
var sftpConnectionInfo = new ConnectionInfo("hostName", "userName", privateKeyAuthenticationMethod);
var sftpClient = new SftpClient(sftpConnectionInfo);

var adapters = new List<IAdapter>
{
    new LocalAdapter("local", "/var/files"),
    new SftpAdapter("sftp", "/var/files", sftpClient)
};

var fileSystem = new FileSystem(adapters);

Example operations

// Sftp connection.
var privateKeyFile = new PrivateKeyFile("/home/userName/.ssh/id_rsa");
var privateKeyAuthenticationMethod = new PrivateKeyAuthenticationMethod("userName", privateKeyFile);
var sftpConnectionInfo = new ConnectionInfo("hostName", "userName", privateKeyAuthenticationMethod);
var sftpClient = new SftpClient(sftpConnectionInfo);

var adapters = new List<IAdapter>
{
    new LocalAdapter("local", "/var/files"),
    new SftpAdapter("sftp", "/var/files", sftpClient)
};

// Copies a file from the `local` adapter to the `sftp` adapter.
await fileSystem.CopyFileAsync("local://foo/bar.txt", "sftp://bar/foo.txt");

// Moves a file from the `sftp` adapter to the `local` adapter.
await fileSystem.MoveFileAsync("sftp://Foo/Bar.txt", "local://Bar/Foo.txt");

// Writes string contents to the `local` adapter.
await fileSystem.WriteFileAsync("local://foo/bar.txt", "Bar!");

About

FileSystem is a .Net file system abstraction supporting multiple adapters

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages