WinSCPHelper2 6.3.2

dotnet add package WinSCPHelper2 --version 6.3.2
NuGet\Install-Package WinSCPHelper2 -Version 6.3.2
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="WinSCPHelper2" Version="6.3.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WinSCPHelper2 --version 6.3.2
#r "nuget: WinSCPHelper2, 6.3.2"
#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 WinSCPHelper2 as a Cake Addin
#addin nuget:?package=WinSCPHelper2&version=6.3.2

// Install WinSCPHelper2 as a Cake Tool
#tool nuget:?package=WinSCPHelper2&version=6.3.2

WinSCPHelper2

WinSCPHelper2 NuGet version WinSCPHelper2 Nuget download count

A library for uploading and downloading files from remote server via WinSCP Assembly Library. Extremely fast, flexible, and easy to use. WinSCPHelper2 works great on SFTP.

WinSCPHelper2 is almost identical to WinSCPHelper but without the security issues caused by the old version of WinSCP included with the package. This means that WinSCPHelper2 addresses all of the security concern that its predecessor did not.

Getting Started

How to install

  • Right click on your project and select "Manage NuGet Package".
  • Search for "WinSCPHelper2".
  • Install WinSCPHelper2 in your project.

Sample Code

  • Below is a sample code for downloading files from a remote directory to your local folder.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WinSCPHelper2;

namespace WinScpPlayground
{
    class Program
    {
        static void Main(string[] args)
        {
            WinScpConnection winScpConnection = 
                new WinScpConnection("hostname", 
                                     "sftpusername", 
                                     "sftppassword");
            var currentSession = winScpConnection.Open();
            var currentList =
                 winScpConnection.Download(currentSession, 
                                           "/var/www/myremotedirectory",
                                           @"C:\mytargetfolder");

            //for verification - display names of downloaded file
            foreach (var file in currentList)
                Console.WriteLine(file.FileName);
        }
    }
}
  • You can also download a single file by doing this
WinScpConnection winScpConnection = 
    new WinScpConnection("hostname", "sftpusername", "sftppassword");
var currentSession = winScpConnection.Open();
winScpConnection.Download(currentSession, 
                          "/var/www/myremotedirectory/remotefile.jpg",
                          @"C:\mytargetfolder\localfile.jpg");

  • Here is a snippet in uploading files to your target remote directory.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WinSCPHelper2;

namespace WinScpPlayground
{
    class Program
    {
        static void Main(string[] args)
        {
            WinScpConnection winScpConnection = 
                new WinScpConnection("hostname",
                                     "sftpusername", 
                                     "sftppassword");
            var currentSession = winScpConnection.Open();
            winScpConnection.Upload(currentSession,
                                    @"C:\localfolderforupload\*.*", 
                                    "/var/www/myremotedirectory/*.*");
        }
    }
}
  • Uploading a single file is also doable. Like so,
WinScpConnection winScpConnection = 
    new WinScpConnection("hostname", "sftpusername", "sftppassword");
var currentSession = winScpConnection.Open();
winScpConnection.Upload(currentSession, 
                        @"C:\localfolderforupload\localfile.jpg", 
                        "/var/www/myremotedirectory/remotefile.jpg");

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.0

  • .NETFramework 4.5

  • .NETFramework 4.5.1

  • .NETFramework 4.5.2

  • .NETFramework 4.6

  • .NETFramework 4.6.1

  • .NETFramework 4.6.2

  • .NETFramework 4.7

  • .NETFramework 4.7.1

  • .NETFramework 4.7.2

  • .NETFramework 4.8

  • .NETFramework 4.8.1

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.3.2 108 3/13/2024
6.3.1 96 2/28/2024
6.3.0 97 2/19/2024
6.1.3 100 2/15/2024
6.1.2 280 9/21/2023
6.1.1.1 169 8/16/2023
6.1.1 180 7/4/2023
6.1.0 177 5/23/2023
5.21.8 322 4/13/2023
5.21.7 590 1/26/2023
5.21.6.1 427 12/1/2022
5.21.6 296 12/1/2022
5.21.5.2 377 11/12/2022
5.21.5.1 470 10/8/2022
5.21.5 373 10/8/2022
5.21.3 412 9/8/2022
5.21.2 491 8/27/2022

- Now using WinSCP 6.3.2.