put command using winscp.com and c#

Advertisement

dmishoe
Guest

put command using winscp.com and c#

/// Run hidden WinSCP process
Process winscp = new Process();
winscp.StartInfo.FileName = "winscp.com";


winscp.StartInfo.Arguments = "/log=" + logname;
winscp.StartInfo.UseShellExecute = false;
winscp.StartInfo.RedirectStandardInput = true;
winscp.StartInfo.RedirectStandardOutput = true;
//winscp.StartInfo.FileName = "test_daimler.vdi";

winscp.StartInfo.CreateNoWindow = true;
winscp.Start();

/// Feed in the scripting commands
winscp.StandardInput.WriteLine("option batch on");
winscp.StandardInput.WriteLine("option confirm off");
winscp.StandardInput.WriteLine("open mysession");
winscp.StandardInput.WriteLine("ls");
winscp.StandardInput.WriteLine("RM *.vdi*");
winscp.StandardInput.WriteLine("ls");

winscp.StandardInput.WriteLine("put c:\\test_daimler_1.vdi ");
//winscp.StandardInput.WriteLine("get *.*");
winscp.StandardInput.WriteLine("ls");
winscp.StandardInput.Close();

/// Collect all output (not used in this example)
string output = winscp.StandardOutput.ReadToEnd();

Console.WriteLine("output:" + output);


when I run the above script, the file names get put on the server as
%SFLNDSFTPT%SFLNDSFTPT%null%DONE%test_daimler1.vdi_0bte0l005q8e34fp00004srm

I can't seem to control the file name.

Any and all help would be greatly appreciated.

Reply with quote

Advertisement

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

Re: put command using winscp.com and c#

I do not understand what is the problem and what are you trying to achieve. Please try again.

Reply with quote

dmishoe
Guest

Re: put command using winscp.com and c#

martin wrote:

I do not understand what is the problem and what are you trying to achieve. Please try again.

I do not want winscp to alter the file name.

Reply with quote

dmishoe
Guest

the original file name

the original file name is:
winscp.StandardInput.WriteLine("put c:\\test_daimler_1.vdi ");

Reply with quote

Advertisement

martin
Site Admin
martin avatar

Re: the original file name

It is unlikely that is caused by WinSCP. It's likely being done on the server side.

Reply with quote

Advertisement

You can post new topics in this forum