All Projects → robinrodricks → Fluentftp

robinrodricks / Fluentftp

Licence: mit
An FTP and FTPS client for .NET & .NET Standard, optimized for speed. Provides extensive FTP commands, File uploads/downloads, SSL/TLS connections, Automatic directory listing parsing, File hashing/checksums, File permissions/CHMOD, FTP proxies, FXP support, UTF-8 support, Async/await support, Powershell support and more. Written entirely in C#,…

Programming Languages

C#
18002 projects
Visual Basic .NET
514 projects
powershell
5483 projects

Projects that are alternatives of or similar to Fluentftp

php-ftp-client
📦 Provides helper classes and methods to manage FTP files in an OOP way.
Stars: ✭ 81 (-95.83%)
Mutual labels:  ftp, ftp-client, ftps
fs2-ftp
Simple client for Ftp/Ftps/Sftp
Stars: ✭ 24 (-98.76%)
Mutual labels:  ftp, ftp-client, ftps
SpiceSharp
Spice# is a cross-platform electronic circuit simulator based on Berkeley Spice - the mother of commercial industry-standard circuit simulators.
Stars: ✭ 146 (-92.49%)
Mutual labels:  net-standard, net-core, net-framework
Youtubeexplode
The ultimate dirty YouTube library
Stars: ✭ 1,775 (-8.65%)
Mutual labels:  net-core, net-framework, net-standard
Extensions
My .NET extensions
Stars: ✭ 29 (-98.51%)
Mutual labels:  net-standard, net-core, net-framework
Sortpem
➿ Sorting utility for PEM files
Stars: ✭ 11 (-99.43%)
Mutual labels:  unix, ssl, tls
Rust Ftp
FTP client for Rust
Stars: ✭ 110 (-94.34%)
Mutual labels:  ftp, ftp-client
React Native Tcp Socket
React Native TCP socket API for Android, iOS & macOS with client SSL/TLS support
Stars: ✭ 112 (-94.24%)
Mutual labels:  ssl, tls
Aspnetcorecertificates
Certificate Manager in .NET Core for creating and using X509 certificates
Stars: ✭ 135 (-93.05%)
Mutual labels:  ssl, tls
Captagent
100% Open-Source Packet Capture Agent for HEP
Stars: ✭ 116 (-94.03%)
Mutual labels:  ssl, tls
Sslsplit
Transparent SSL/TLS interception
Stars: ✭ 1,371 (-29.44%)
Mutual labels:  ssl, tls
Servicestack.ormlite
Fast, Simple, Typed ORM for .NET
Stars: ✭ 1,532 (-21.15%)
Mutual labels:  net-core, net-framework
Ltgt
Lightweight HTML processor
Stars: ✭ 117 (-93.98%)
Mutual labels:  net-core, net-framework
Arduinosim800l
Arduino HTTP & FTP client for SIM800L/SIM800 boards to perform GET and POST requests to a JSON API as well as FTP uploads.
Stars: ✭ 127 (-93.46%)
Mutual labels:  ftp, ftp-client
Lemur
Repository for the Lemur Certificate Manager
Stars: ✭ 1,533 (-21.1%)
Mutual labels:  ssl, tls
Tls Channel
A Java library that implements a ByteChannel interface over SSLEngine, enabling easy-to-use (socket-like) TLS for Java applications.
Stars: ✭ 113 (-94.18%)
Mutual labels:  ssl, tls
Scaffolder
Database scaffolding tool
Stars: ✭ 102 (-94.75%)
Mutual labels:  net-core, net-framework
Aioftp
ftp client/server for asyncio (http://aioftp.readthedocs.org)
Stars: ✭ 116 (-94.03%)
Mutual labels:  ftp, ftp-client
Certstrap
Tools to bootstrap CAs, certificate requests, and signed certificates.
Stars: ✭ 1,689 (-13.07%)
Mutual labels:  ssl, tls
Pem
Easy PEM file parsing in Python.
Stars: ✭ 122 (-93.72%)
Mutual labels:  ssl, tls

FluentFTP

Version Downloads GitHub contributors Codacy Badge License

FluentFTP is a fully managed FTP and FTPS library for .NET & .NET Standard, optimized for speed. It provides extensive FTP commands, File uploads/downloads, SSL/TLS connections, Automatic directory listing parsing, File hashing/checksums, File permissions/CHMOD, FTP proxies, FXP transfers, UTF-8 support, Async/await support, Powershell support and more.

It is written entirely in C#, with no external dependencies. FluentFTP is released under the permissive MIT License, so it can be used in both proprietary and free/open source applications.

Features

Features

  • Full support for FTP, FXP, FTPS (FTP over SSL), FTPS with client certificates and FTPS with CCC (for FTP firewalls)
  • File management:
    • File and directory listing for all major server types (Unix, Windows/IIS, Azure, Pure-FTPd, ProFTPD, Vax, VMS, OpenVMS, Tandem, HP NonStop Guardian, IBM z/OS and OS/400, Windows CE, Serv-U, etc)
    • Fully recursive directory listing and directory deletion (manual recursion and server-side recursion)
    • Easily upload and download a file from the server with progress tracking
    • Easily upload and download a directory from the server with easy synchronization modes
    • Easily transfer a file or folder directly from one server to another using the FXP protocol
    • Conditionally transfer files using rule based whitelisting and blacklisting
    • Automatically verify the hash of a file & retry transfer if hash mismatches
    • Configurable error handling (ignore/abort/throw) for multi-file transfers
    • Easily read and write file data from the server using standard streams
    • Create, append, read, write, rename, move and delete files and folders
    • Recursively deletes folders and all its contents
    • Get file/folder info (exists, size, security flags, modified date/time)
    • Get and set file permissions (owner, group, other)
    • Absolute or relative paths (relative to the "working directory")
    • Compare a local file against a remote file using the hash/checksum (MD5, CRC32, SHA-1, SHA-256, SHA-512)
    • Dereference of symbolic links to calculate the linked file/folder
    • Throttling of uploads and downloads with configurable speed limit
  • FTP protocol:
  • Asynchronous support:
    • Synchronous and asynchronous methods using async/await for all operations
    • Asynchronous support for the IAsyncEnumerable pattern for GetListing methods (see GetListingAsyncEnumerable)
    • All asynchronous methods can be cancelled midway by passing a CancellationToken
    • All asynchronous methods honor the ReadTimeout and automatically cancel themselves if timed out
    • Improves thread safety by cloning the FTP control connection for file transfers (optional)
    • Implements its own internal locking in an effort to keep transactions synchronized
  • Extensible:
    • Easily add support for custom non-standard FTP servers (see the Custom Servers page)
    • Easily add support for more file or directory filtering rules (simply extend FtpRule)
    • Easily add support for more proxy types (simply extend FtpClientProxy)
    • Easily add unsupported directory listing parsers (see the CustomParser example)
    • Easily add custom logging/tracing functionality using FtpTrace.AddListener
    • Easily add your own Powershell commands by extending the scripts in FluentFTP.ps1

Releases

Stable binaries are released on NuGet, and contain everything you need to use FTP/FTPS in your .Net/CLR application. For usage see the Quick Start Example and the Documentation wiki.

FluentFTP works on .NET and .NET Standard/.NET Core.

Platform Binaries Folder
.NET 2.0 net20
.NET 3.5 net35
.NET 4.0 net40
.NET 4.5 net45
.NET 5.0 net50
.NET Standard 1.4 netstandard1.4
.NET Standard 1.6 netstandard1.6
.NET Standard 2.0 netstandard2.0
.NET Standard 2.1 netstandard2.1

FluentFTP is also supported on these platforms: (via .NET Standard)

  • Mono 4.6
  • Xamarin.iOS 10.0
  • Xamarin.Android 10.0
  • Universal Windows Platform 10.0

Binaries for all platforms are built from a single Visual Studio 2019 Project. You will need VS 2019 to build or contribute to FluentFTP.

Example Usage

To get started, check out the Quick start example in C#.

We also have extensive examples for all methods in C# and VB.NET.

Documentation and FAQs

Check the Wiki.

Sponsorship

If FluentFTP helped you or your organization, consider sponsoring the project by donating a small amount per month. Even $20 goes a long way! Everything I receive goes into household expenses and paying the bills.

I have been a freelancer for more than a decade, and your contributions go towards supporting my work and my family. I only recently started asking for donations to fund the time I spend on these open source projects.

Contributors

Special thanks to these awesome people who helped create FluentFTP!

Software Support

FluentFTP has recieved free software from these generous organizations:

JetBrains provides cutting-edge IDE and developer productivity tools. Balsamiq provides rapid and effective wireframing and UI design tools. YourKit provides a market-leading intelligent Java Profiler and .NET Profiler.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].