This file system provides an implementation for the file system based on the FTP protocol using FluentFTP library.
var address = "address";
var username ="username";
var password ="password";
using(FileSystem fileSystem = TagBites.IO.Ftp.FtpFileSystem.Create(address, username, password))
{
// ... using like standard file system
}Remember to use
usingstatement or callDisposemethod after usage.
Full implementation on github: TagBites.IO.Ftp.