在winform C#中从命令提示符执行自定义命令

时间:2013-07-05 18:47:49

标签: c# winforms command

我有一个第三方可执行命令,它被捆绑到我的winform应用程序中。该命令放在一个名为" tools"的目录中。从正在执行应用程序的目录。

例如,如果我的winform mytestapp.exe位于D:\ apps \ mytestapp目录中,则第三方命令的路径为D:\ apps \ mytestapp \ tools \ mycommand.exe。我使用Application.StartupPath来识别mytestapp.exe的位置,以便可以从任何位置运行它。

我通过启动进程 - System.Diagnostics.Process.Start并使用命令提示符执行相同的命令来执行此命令。还有其他参数可用于运行命令。

我遇到的问题是,如果我的应用程序的路径和命令中没有任何空格,那就可以了。

例如, 如果我的应用程序和命令放置如下,它的工作原理 d:\ APPS \ mytestapp \ mytestapp.exe D:\ apps \ mytestapp \ tools \ mycommand.exe" parameter1" "参数2" - 这个工作

但是如果我在路径中有空格,则会失败

C:\ Documents and settings \ mytestapp \ tools \ mycommand.exe" parameter1" "参数2" - 没有用 C:\ Documents and settings \ mytestapp \ tools \ mycommand.exe" parameter1 parameter2" - 没有用 " C:\ Documents and settings \ mytestapp \ tools \ mycommand.exe" "参数1参数2" - 没有用 " C:\ Documents and settings \ mytestapp \ tools \ mycommand.exe parameter1 parameter2" - 没有工作

我尝试使用双引号执行命令,如上所示,但它不起作用。 那么,我该如何执行自定义命令。是否有任何输入或解决此问题? 提前谢谢。

以下是启动流程的代码

try
        {
            System.Diagnostics.ProcessStartInfo procStartInfo =
                new System.Diagnostics.ProcessStartInfo("cmd", "/c " + command);
            procStartInfo.RedirectStandardOutput = true;
            procStartInfo.UseShellExecute = false;
            procStartInfo.CreateNoWindow = true;
            System.Diagnostics.Process proc = new System.Diagnostics.Process();
            proc.StartInfo = procStartInfo;
            proc.Start();
            proc.WaitForExit();
        }
        catch (Exception objException)
        {
            // Log the exception
        }

3 个答案:

答案 0 :(得分:1)

尝试从命令中提取Working目录,并为ProcessStartInfo对象设置WorkingDirectory属性。然后在您的命令中只传递文件名。

此示例假定该命令仅包含完整文件名 需要根据实际命令文本进行调整

string command = "C:\Documents and settings\mytestapp\tools\mycommand.exe";
string parameters = "parameter1 parameter2";

try
{
    string workDir = Path.GetDirectoryName(command);
    string fileCmd = Path.GetFileName(command);
    System.Diagnostics.ProcessStartInfo procStartInfo =
        new System.Diagnostics.ProcessStartInfo("cmd", "/c " + fileCmd + " " + parameters);
    procStartInfo.WorkingDirectory = workDir;
    procStartInfo.RedirectStandardOutput = true;
    procStartInfo.UseShellExecute = false;
    procStartInfo.CreateNoWindow = true;
    System.Diagnostics.Process proc = new System.Diagnostics.Process();
    proc.StartInfo = procStartInfo;
    proc.Start();
    proc.WaitForExit();
}
catch (Exception objException)
{
    // Log the exception
}

答案 1 :(得分:0)

我相信以下作品: “C:\ Documents and settings \ mytestapp \ tools \ mycommand.exe”“parameter1”“parameter2”

你可能还有其他错误。尝试调试并检查引用是否被使用了两次,或者中间是否有引号。

答案 2 :(得分:0)

我认为这可能是因为引用包含空格的路径的args(和命令)字符串需要引号;它们也需要在定义非逐字(即字符串前面没有@)in-code时被转义,所以command字符串将被定义如下:

var command = "\"C:\\Documents and settings\\mytestapp\\tools\\mycommand.exe\"";
             // ^ escaped quote                                              ^ escaped quote

特别是对于启动过程我不久前编写了这个方法,对于这个特定情况可能有点太专业了,但是可以很容易地把它当成和/或用不同的参数写入重载以适应不同的设置风格一个过程:

private ProcessStartInfo CreateStartInfo(string command, string args, string workingDirectory, bool useShellExecute)
{
    var defaultWorkingDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ?? string.Empty;
    var result = new ProcessStartInfo
    {
        WorkingDirectory = string.IsNullOrEmpty(workingDirectory) 
                                 ? defaultWorkingDirectory 
                                 : workingDirectory,
        FileName = command,
        Arguments = args,
        UseShellExecute = useShellExecute,
        CreateNoWindow = true,
        ErrorDialog = false,
        WindowStyle = ProcessWindowStyle.Hidden,
        RedirectStandardOutput = !useShellExecute,
        RedirectStandardError = !useShellExecute,
        RedirectStandardInput = !useShellExecute
    };
    return result;
}

我正在使用它,如下所示;这里_process对象可以是任何Process - 将它作为实例变量可能对您的用例无效; OutputDataReceivedErrorDataReceived事件处理程序(未显示)也只记录输出字符串 - 但您可以解析它并根据它采取一些行动:

public bool StartProcessAndWaitForExit(string command, string args, 
                     string workingDirectory, bool useShellExecute)
{
    var info = CreateStartInfo(command, args, workingDirectory, useShellExecute);            
    if (info.RedirectStandardOutput) _process.OutputDataReceived += _process_OutputDataReceived;
    if (info.RedirectStandardError) _process.ErrorDataReceived += _process_ErrorDataReceived;

    var logger = _logProvider.GetLogger(GetType().Name);
    try
    {
        _process.Start(info, TimeoutSeconds);
    }
    catch (Exception exception)
    {
        logger.WarnException(log.LogProcessError, exception);
        return false;
    }

    logger.Debug(log.LogProcessCompleted);
    return _process.ExitCode == 0;
}

您传递的args字符串正是您在命令行中输入的字符串,因此在您的情况下可能如下所示:

CreateStartInfo("\"C:\\Documents and settings\\mytestapp\\tools\\mycommand.exe\"", 
                "-switch1 -param1:\"SomeString\" -param2:\"Some\\Path\\foo.bar\"",
                string.Empty, true);

如果您将路径/命令字符串放在设置文件中,则可以存储它们而无需转义引号和反斜杠。