批处理文件未从c#代码运行
本文关键字:代码 运行 批处理文件 | 更新日期: 2023-09-27 18:24:52
我在共享位置有一个批处理文件,我正在从.net代码执行该文件,但该批处理文件没有执行。实际情况是,批处理文件的整个代码都不工作,只有部分代码在工作。我假设.net代码的执行正在完成并停止批处理文件的执行。下面是我的.net代码
private static void ExecuteCommand(string command, string arguments)
{
try
{
Console.WriteLine("Code execution starts");
Console.WriteLine("command: " + command);
Console.WriteLine("arguments: " + arguments);
var process = new Process();
process.StartInfo.FileName = command;
if (!string.IsNullOrEmpty(arguments))
{
process.StartInfo.Arguments = arguments;
}
process.StartInfo.CreateNoWindow = true;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
//process.StartInfo.CreateNoWindow = false;
//process.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
process.StartInfo.UseShellExecute = true;
process.EnableRaisingEvents = true;
//process.StartInfo.RedirectStandardError = true;
//process.StartInfo.RedirectStandardOutput = true;
string stdError;
// process.Start();
Thread.Sleep(60000);
ThreadPool.QueueUserWorkItem(delegate
{
process.Start();
// process.WaitForExit();
});
//Thread.Sleep(60000);
//ThreadStart ths = new ThreadStart(delegate()
//{
// process.Start();
// //process.BeginOutputReadLine();
// //stdError = process.StandardError.ReadToEnd();
//});
//process.Start();
//process.BeginOutputReadLine();
//stdError = process.StandardError.ReadToEnd();
Console.WriteLine("Code execution ends");
}
catch (Exception e)
{
Console.WriteLine("Code execution error: "+e.Message +"||"+e.InnerException.ToString());
}
}
要求是开始执行批处理文件,不要等待批处理文件执行的任何输出或结束。当我从命令提示符或windows资源管理器运行批处理文件时,它运行良好。无法在.net代码中使用cmd.exe,因为当批处理文件不存在或权限问题
我认为您可以使用WaitForExit
方法,而不是使用可能或不可能获取的Sleep。
更多信息:http://msdn.microsoft.com/en-us/library/ty0d8k56.aspx
如果这不起作用,您可以使用一种变通方法,比如使用一个在进程开始前创建并在进程结束时由批处理删除的文件,并由FileSystemWatcher
(http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher(v=vs.110).aspx)来检查该过程是否完成。