Ftp.dll 2.0.23025.1902

.NET 5.0 .NET Standard 2.0 .NET Framework 2.0
There is a newer version of this package available.
See the version list below for details.
dotnet add package Ftp.dll --version 2.0.23025.1902
NuGet\Install-Package Ftp.dll -Version 2.0.23025.1902
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ftp.dll" Version="2.0.23025.1902" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ftp.dll --version 2.0.23025.1902
#r "nuget: Ftp.dll, 2.0.23025.1902"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Ftp.dll as a Cake Addin
#addin nuget:?package=Ftp.dll&version=2.0.23025.1902

// Install Ftp.dll as a Cake Tool
#tool nuget:?package=Ftp.dll&version=2.0.23025.1902

Upload file via FTP/FTPS

using(Ftp ftp = new Ftp())
{
     ftp.Connect("ftp.server.com");  // or ConnectSSL for SSL/TLS
     ftp.Login("user", "password");
           
     ftp.ChangeFolder("uploads");
     ftp.Upload("report.txt", @"c:\report.txt");
           
     ftp.Close();
}

Download file via FTP/FTPS

using(Ftp ftp = new Ftp())
{
    ftp.Connect("ftp.server.com");  // or ConnectSSL for SSL/TLS
    ftp.Login("user", "password");
         
    ftp.ChangeFolder("downloads");
    ftp.Download("report.txt", @"c:\report.txt");
         
    ftp.Close();
}
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net20 net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Ftp.dll:

Package Downloads
Wing.CL

Wing常用类库

StealthFTPBackHandle

StealthFTPBackHandle

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.23061.1027 257 3/2/2023
2.0.23025.1902 729 1/25/2023
2.0.22269.922 5,568 9/26/2022
2.0.21336.1213 24,543 12/2/2021
2.0.21313.1247 877 11/9/2021
2.0.21231.1248 5,277 8/19/2021
2.0.20365.1313 17,559 12/30/2020
2.0.20356.1224 508 12/21/2020
2.0.20006.1858 26,611 1/6/2020