SimpleFTPManager .NET

Overview

Simple FTP Manager is a .NET based library that allows you to perform basic ftp operations on either Ftp and Sftp it also supports TLS

Features

  •    Download file
  • Upload file
  • CreateFolder
  • DeleteFolder
  • Move/Copy File

Requirements

  • .NET Framework 4.5
  • SSH.NET(for Sftp connection)

Instructions

Instantiate 
To create a ftp connection you can simply use this:
IFtp ftp = new FtpConnection(“localhost”, 21, Model.Protocol.Ftp, “test”, “test123”);

Related