WinSCP Local Project Access files under the External System folder

Source: Internet
Author: User

String hostName = configurationmanager.appsettings["HostName"];
String userName = configurationmanager.appsettings["UserName"];
string password = configurationmanager.appsettings["password"];
String SKey = configurationmanager.appsettings["Sshhostkeyfingerprint"];
String Kex = configurationmanager.appsettings["Kex"];
String SourcePath = configurationmanager.appsettings["Frompath"];
String extenname = configurationmanager.appsettings["FileName"];
String hostpath = configurationmanager.appsettings["Topath"];

Try
{
Configure session Options
Sessionoptions sessionoptions = new Sessionoptions
{
Protocol = PROTOCOL.SCP,
HostName = HostName,
UserName = UserName,
Password = Password,
Sshhostkeyfingerprint = SKey,
};
Sessionoptions.addrawsettings ("KEX", KEX);
using (Session session = new Session ())
{
Session. Open (sessionoptions);
var commandresult = session. ExecuteCommand ("CD" + SourcePath);
Commandresult = Session. ExecuteCommand ("LS");
if (commandresult.issuccess)
{
var fileNames = commandResult.Output.Split (' \ n '). Where (FileName = Filename.endswith (extenname)). ToList ();
if (! Directory.Exists (Hostpath))
{
Directory.CreateDirectory (Hostpath);
}
foreach (Var fileName in FileNames)
{
var result = session. GetFiles ("/" + SourcePath + "/" + FileName, Hostpath);
Console.WriteLine (String. Format ("filename:{0}, File transfer {1}! ", fileName, result. Issuccess? "Success": "Failure");
}
}
}
Console.WriteLine ("Done");
}
catch (Exception ex)
{
Console.WriteLine (ex. Message);
}

WinSCP Local Project Access files under the External System folder

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.