使用MSDN我让类为我的命令行工具编写了一个包装器。
我现在面临一个问题,如果我通过命令行使用参数执行exe,它可以完美运行而没有任何错误。
但是当我尝试从Wrapper传递参数时,它会使程序崩溃。
想知道我是否正确地传递了论据,如果我错了,请有人指出。 这是来自MSDN的LaunchEXE类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.IO;
namespace SPDB
{
/// <summary>
/// Class to run any external command line tool with arguments
/// </summary>
public class LaunchEXE
{
internal static string Run(string exeName, string argsLine, int timeoutSeconds)
{
StreamReader outputStream = StreamReader.Null;
string output = "";
bool success = false;
try
{
Process newProcess = new Process();
newProcess.StartInfo.FileName = exeName;
newProcess.StartInfo.Arguments = argsLine;
newProcess.StartInfo.UseShellExecute = false;
newProcess.StartInfo.CreateNoWindow = true; //The command line is supressed to keep the process in the background
newProcess.StartInfo.RedirectStandardOutput = true;
newProcess.Start();
if (0 == timeoutSeconds)
{
outputStream = newProcess.StandardOutput;
output = outputStream.ReadToEnd();
newProcess.WaitForExit();
}
else
{
success = newProcess.WaitForExit(timeoutSeconds * 1000);
if (success)
{
outputStream = newProcess.StandardOutput;
output = outputStream.ReadToEnd();
}
else
{
output = "Timed out at " + timeoutSeconds + " seconds waiting for " + exeName + " to exit.";
}
}
}
catch (Exception e)
{
throw (new Exception("An error occurred running " + exeName + ".", e));
}
finally
{
outputStream.Close();
}
return "\t" + output;
}
}
}
这是我从主程序(Form1.cs)传递参数的方式
private void button1_Click(object sender, EventArgs e)
{
string output;
output = LaunchEXE.Run(@"C:\Program Files (x86)\MyFolder\MyConsole.exe", "/BACKUP C:\\MyBackupProfile.txt", 100);
System.Windows.Forms.MessageBox.Show(output);
}
命令行工具接受以下命令并完美运行:
C:\ Program Files(x86)\ MyFolder&gt; MyConsole.exe / BACKUP C:\ MyBackupProfile.txt
答案 0 :(得分:1)
我有两种选择 -
1)请尝试在“管理员模式”下运行Visual Studio。 或者2)尝试实现这一点。 http://commandline.codeplex.com/。
“命令行解析器库为CLR应用程序提供了一个简洁的API,用于操作命令行参数和相关任务。它允许您显示具有高度自定义的帮助屏幕以及向语句错误报告的简单方法用户。所有无聊和重复编程的东西都站在库的肩膀上,让你专注于核心逻辑。这个库提供了无忧的命令行解析,自2005年以来不断更新的API。“
对我来说很棒。
答案 1 :(得分:0)
我有一种感觉,它不喜欢你路径中的空间。请参阅此帖子:C# How to use Directory White Spaces into process.arguements?