Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: the original file name

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

the original file name

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

Re: put command using winscp.com and c#

How does the original file name look like?
dmishoe

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.
martin

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.
dmishoe

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.