- martin
Post a reply
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
Topic review
- ASKant
Error "Element "mv" not found in the log file" when script move in empty source directory
WinSCP Version 5.8.1 beta (Build 6144)
I have exception "Element "mv" not found in the log file" if source directory ("RTD/IN/TMP/") empty and source path contain file mask like "RTD/IN/TMP/*.xml".
public void MoveRemoteFiles()
{
using (Session session = new Session())
{
// Setup session options
SessionOptions sessionOptions = new SessionOptions();
sessionOptions.ParseUrl("sftp://user:password@freeFTPd");
sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey = true;
session.ExecutablePath = @"c:\Utils\WinSCP\winscp.exe";
session.SessionLogPath = "c:\\Utils\\WinSCP\\SessionLogPath.txt";
session.DebugLogPath = "c:\\Utils\\WinSCP\\DebugLogPath.txt";
session.Open(sessionOptions);
session.MoveFile("RTD/IN/TMP/*.xm", "SD/IN/TMP");
}
}
I have exception "Element "mv" not found in the log file" if source directory ("RTD/IN/TMP/") empty and source path contain file mask like "RTD/IN/TMP/*.xml".
public void MoveRemoteFiles()
{
using (Session session = new Session())
{
// Setup session options
SessionOptions sessionOptions = new SessionOptions();
sessionOptions.ParseUrl("sftp://user:password@freeFTPd");
sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey = true;
session.ExecutablePath = @"c:\Utils\WinSCP\winscp.exe";
session.SessionLogPath = "c:\\Utils\\WinSCP\\SessionLogPath.txt";
session.DebugLogPath = "c:\\Utils\\WinSCP\\DebugLogPath.txt";
session.Open(sessionOptions);
session.MoveFile("RTD/IN/TMP/*.xm", "SD/IN/TMP");
}
}