https://github.com/zimmerrol/ftpnet
Implementation of a FTP client in .NET 3.5 for desktop and portable applications.
https://github.com/zimmerrol/ftpnet
Last synced: about 1 month ago
JSON representation
Implementation of a FTP client in .NET 3.5 for desktop and portable applications.
- Host: GitHub
- URL: https://github.com/zimmerrol/ftpnet
- Owner: zimmerrol
- License: mit
- Created: 2018-06-09T12:17:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-21T19:45:10.000Z (about 6 years ago)
- Last Synced: 2025-02-09T08:16:57.265Z (3 months ago)
- Language: C#
- Homepage:
- Size: 601 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FTPNet
Simple implementation of the FTP protocol (client side) using .NET 3.5This repository is not actively maintained; but maybe this is still helpful for someone trying to implement the FTP protocol on their own.
The repository contains two implementations of the protocol:
- a very basic version for classic .NET 3.5 (for Desktop applications), no advanced features
- a extended version which can be compiled as a portable library with advanced featuresTo use the portable library who might have to update the *Bouncy Castle* library inside the project which is responsible for the SSL/TLS encryption. Look [here](http://www.bouncycastle.org/csharp/) for a suitable replacement.

