[C#][WINSCP]
Ostatnio zmodyfikowano 2017-03-09 09:30
aaadam Temat założony przez niniejszego użytkownika |
[C#][WINSCP] » 2017-03-08 10:45:45 siemka próbuje przesłać pliki z jednego kompa na drugi za pomocą scp to mój kod : using System; using WinSCP; class Program { static void Main( string[] args ) { SessionOptions sessionOptions = new SessionOptions { Protocol = Protocol.Sftp, HostName = "10.123.96.33", UserName = "root", Password = "tajnehaslo", SshHostKeyFingerprint = "ssh-rsa 2048 xx:xx:XX:XX:XX:XX:XX:XX:XX:XX" }; Session sesion = new Session(); try { sesion.Open( sessionOptions ); } catch( Exception e ) { Console.WriteLine( "Error: {0}", e ); } Console.Read(); } }
Error: WinSCP.SessionLocalException: The winscp.exe executable was not found at location of the assembly (C:\Users\xxxxxx\Documents\Visual Studio 2015\Projects \scp\scp\bin\Debug), nor in an installation path. You may use Session.Exec utablePath property to explicitly set path to winscp.exe. at WinSCP.ExeSessionProcess.GetExecutablePath() at WinSCP.ExeSessionProcess..ctor(Session session, Boolean useXmlLog, String additionalArguments) at WinSCP.Session.Open(SessionOptions sessionOptions) at tmpssa.Program.Main(String[] args) in C:\Users\majcher\Documents\Visual St udio 2015\Projects\tmpssa\tmpssa\Program.cs:line 41
. mam w tym katalogu dllke C:\Users\xxxxxx\Documents\Visual Studio 2015\Projects\scp\scp\bin\Debug prosze o pomoc |
|
Bielan |
» 2017-03-08 20:43:26 A komunikat pyta o DLLkę czy o EXE? |
|
aaadam Temat założony przez niniejszego użytkownika |
» 2017-03-09 09:30:53 hmm fakt ... zaraz sie tym zajmę :P |
|
« 1 » |