У меня есть программа, которая принимает команду Cmd в качестве аргумента команды.
В основном вы называете это так: C:\MyProgram.exe del C:\test.txt
Вышеприведенная команда работает нормально.Однако, когда я пытаюсь выполнить команду xcopy, она терпит неудачу:
C:\MyProgram.exe xcopy C:\test.txt C:\Temp\Test2.txt
Код программы:
class Program
{
static void Main(string[] args)
{
string command = GetCommandLineArugments(args);
// /c tells cmd that we want it to execute the command that follows and then exit.
System.Diagnostics.ProcessStartInfo procStartInfo = new System.Diagnostics.ProcessStartInfo("cmd", @"/D /c " + command);
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
// Do not create the black window.
procStartInfo.CreateNoWindow = true;
procStartInfo.WindowStyle = ProcessWindowStyle.Hidden;
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo = procStartInfo;
process.Start();
}
private static string GetCommandLineArugments(string[] args)
{
string retVal = string.Empty;
foreach (string arg in args)
retVal += " " + arg;
return retVal;
}
}