C# Cannot Open Session

Advertisement

zhihao88
Joined:
Posts:
1
Location:
Singapore

C# Cannot Open Session

Hi,
where I encounter an exception while trying this piece of code. All help appreciated... Thanks In Advance

Exception:Thrown: "The process cannot access the file 'C:\Users\user\AppData\Local\Temp\wscp1840.01F9ED70.tmp' because it is being used by another process." (System.IO.IOException)
A System.IO.IOException was thrown: "The process cannot access the file 'C:\Users\user\AppData\Local\Temp\wscp1840.01F9ED70.tmp' because it is being used by another process."

Exception:Thrown: "Host key wasn't verified!" (WinSCP.SessionRemoteException)
A WinSCP.SessionRemoteException was thrown: "Host key wasn't verified!"
try
{

SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Sftp,
HostName = "192.0.0.10",
UserName = "user",
SshPrivateKeyPath = "private.ppk",
SshHostKeyFingerprint = "ssh-dss 1024 xx:xx:Xx:xx:Xx:xx:xx:Xx:xx:xx"
};

using (Session session = new Session())
{
// Connect
session.Open(sessionOptions);

// Upload files
TransferOptions transferOptions = new TransferOptions();
transferOptions.TransferMode = TransferMode.Binary;

TransferOperationResult transferResult;
transferResult = session.PutFiles(@"d:\test.txt", "/home/Testing/", false, transferOptions);

// Throw on any error
transferResult.Check();

// Print results
foreach (TransferEventArgs transfer in transferResult.Transfers)
{
Console.WriteLine("Upload of {0} succeeded", transfer.FileName);
}
}
}
catch (Exception e)
{
Console.WriteLine("Error: {0}", e);
}

Reply with quote

Advertisement

martin
Site Admin
martin avatar
Joined:
Posts:
40,476
Location:
Prague, Czechia

Re: C# Cannot Open Session

Thanks for your report.
I have sent you an email with a debug version of WinSCP to address you have used to register on this forum.

Reply with quote

Tannavi Tiwari
Joined:
Posts:
16
Location:
Pune

Re: C# Cannot Open Session

martin wrote:

Thanks for your report.
I have sent you an email with a debug version of WinSCP to address you have used to register on this forum.

HI Martin,

I am also facing this issue. Could me please help me asap for the fix.

Regards

Reply with quote E-mail

Advertisement

You can post new topics in this forum