CoreFtp 2.0.0

Details
Advisory: https://github.com/advisories/GHSA-w393-h95m-f879 Severity: moderate
There is a newer version of this package available.
See the version list below for details.
dotnet add package CoreFtp --version 2.0.0
                    
NuGet\Install-Package CoreFtp -Version 2.0.0
                    
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="CoreFtp" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CoreFtp" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="CoreFtp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CoreFtp --version 2.0.0
                    
#r "nuget: CoreFtp, 2.0.0"
                    
#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.
#:package CoreFtp@2.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CoreFtp&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=CoreFtp&version=2.0.0
                    
Install as a Cake Tool

CoreFTP

NuGet Build

CoreFTP is a simple .NET FTP library written entirely in C#, it is targeted at netstandard 1.6, meaning it will run under .NET Core (which is also where it derives its name) and the full .NET framework. This package was inspired due to a lack of packages providing FTP functionality compiled with support for the netstandard API surface.

NuGet page is at: https://www.nuget.org/packages/CoreFtp/

.NET Framework compatability

CoreFTP Supports and includes compiled binaries for:

  • NetStandard 1.6 and above
  • .NET Framework 4.5.2 and above

Usage

Usage of this small library was intended to be as simple as possible. The integration test suite provides various example of basic FTP usage.

Connecting to an FTP/S server

Connecting to FTP/s supports both Explicit and Implicit modes.

using ( var ftpClient = new FtpClient( new FtpClientConfiguration
                                             {
                                                 Host = "localhost",
                                                 Username = "user",
                                                 Password = "password",
                                                 Port = 990,
                                                 EncryptionType = FtpEncryption.Implicit,
                                                 IgnoreCertificateErrors = true
                                             } ) )
{
    await ftpClient.LoginAsync();
}

Downloading a file to a filestream on local disk
using ( var ftpClient = new FtpClient( new FtpClientConfiguration
                                             {
                                                 Host = "localhost",
                                                 Username = "user",
                                                 Password = "password"
                                             } ) )
{
	var tempFile = new FileInfo( "C:\\test.png" );
    await ftpClient.LoginAsync();
    using ( var ftpReadStream = await ftpClient.OpenFileReadStreamAsync( "test.png" ) )
    {
        using ( var fileWriteStream = tempFile.OpenWrite() )
        {
            await ftpReadStream.CopyToAsync( fileWriteStream );
        }
    }
}

Uploading from a local filestream to the FTP server
using ( var ftpClient = new FtpClient( new FtpClientConfiguration
                                    {
                                        Host = "localhost",
                                        Username = "user",
                                        Password = "password"
                                    } ) )
{
	var fileinfo = new FileInfo( "C:\\test.png" );
    await ftpClient.LoginAsync();    

    using ( var writeStream = await ftpClient.OpenFileWriteStreamAsync( "test.png" ) )
    {
        var fileReadStream = fileinfo.OpenRead();
        await fileReadStream.CopyToAsync( writeStream );
    }
}

Integration Tests

Integration tests can be run against most FTP servers with passive mode enabled, credentials can be configured in appsettings.json of CoreFtp.Tests.Integration.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on CoreFtp:

Package Downloads
AspNetCore.Health

AspNetCore.Health enables load balancers to monitor the status of deployed web applications.

SmarterBalanced.SampleItems.Dal

Package Description

RevStackCore.Net

.net core network protocol utility class library

Reusable.Methods.NET

Collection of Many Useful Reusable Methods for .NET Engineers

dFakto.States.Workers

Framework to ease creation of Amazon StepFunction workers using dotnet

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on CoreFtp:

Repository Stars
Azure/azure-libraries-for-net
Azure libraries for .Net
Version Downloads Last Updated
2.2.0 63 3/1/2026
2.1.0 44 3/1/2026
2.0.0 41 2/28/2026 2.0.0 has at least one vulnerability with moderate severity.
1.4.0 511,019 1/19/2018 1.4.0 has at least one vulnerability with moderate severity.
1.3.6 29,383 8/17/2017 1.3.6 has at least one vulnerability with moderate severity.
1.3.5 37,836 4/23/2017 1.3.5 has at least one vulnerability with moderate severity.
1.3.4 10,486 2/23/2017 1.3.4 has at least one vulnerability with moderate severity.
1.3.3 4,312 1/29/2017 1.3.3 has at least one vulnerability with moderate severity.
1.3.2 2,266 1/22/2017 1.3.2 has at least one vulnerability with moderate severity.
1.3.1 2,507 1/17/2017 1.3.1 has at least one vulnerability with moderate severity.
1.3.0 424,505 1/9/2017 1.3.0 has at least one vulnerability with moderate severity.
1.2.0 31,230 12/13/2016 1.2.0 has at least one vulnerability with moderate severity.
1.1.10 2,965 11/24/2016 1.1.10 has at least one vulnerability with moderate severity.
1.1.9 1,825 11/22/2016 1.1.9 has at least one vulnerability with moderate severity.
1.1.8 1,812 11/22/2016 1.1.8 has at least one vulnerability with moderate severity.
1.1.7 2,012 11/14/2016 1.1.7 has at least one vulnerability with moderate severity.
1.1.6 1,853 11/11/2016 1.1.6 has at least one vulnerability with moderate severity.
1.1.5 2,756 11/8/2016 1.1.5 has at least one vulnerability with moderate severity.
1.1.4 2,100 11/8/2016 1.1.4 has at least one vulnerability with moderate severity.
Loading failed