0

我有一个控制台应用程序,它在启动时要求SourcePath ..当我输入 Source Path 时,它会要求DestinationPath ...当我输入 DestinationPath 时,它会开始一些执行

我的问题是通过 Windows 应用程序提供这些路径,这意味着我需要创建一个窗口窗体应用程序,该应用程序将在一定时间间隔后自动将这些参数提供给控制台应用程序

能否实现...如果是,请帮助...非常紧急...

哦..我已经尝试了很多我无法粘贴的代码,但我用来启动应用程序的一些代码是......

        ProcessStartInfo psi = new ProcessStartInfo();
        psi.FileName = @"C:\Program Files\Wondershare\PPT2Flash SDK\ppt2flash.exe";
        psi.UseShellExecute = false;
        psi.RedirectStandardError = true;
        psi.RedirectStandardInput = true;
        psi.CreateNoWindow = false;
            psi.Arguments = input + ";" + output;
        Process p = Process.Start(psi);

        Process process = new Process
        {
            StartInfo = new ProcessStartInfo
            {
                CreateNoWindow = true,
                FileName = @"C:\Program Files\Wondershare\PPT2Flash SDK\ppt2flash.exe",
                RedirectStandardError = true,
                RedirectStandardOutput = true,
                UseShellExecute = false,
            }
        };
        if (process.Start())
        {
            Redirect(process.StandardError, text);
            Redirect(process.StandardOutput, text);
            MessageBox.Show(text);
        }
    private void Redirect(StreamReader input, string output)
    {
        new Thread(a =>{var buffer = new char[1];
            while (input.Read(buffer, 0, 1) > 0)
            {
                output += new string(buffer);
            };
        }).Start();
    }

但似乎没有任何效果

4

1 回答 1

0

您可以像这样向 ProcessStartInfo 添加参数:

 ProcessStartInfo psi = new ProcessStartInfo(@"C:\MyConsoleApp.exe",
     @"C:\MyLocationAsFirstParamter C:\MyOtherLocationAsSecondParameter");
 Process p = Process.Start(psi);

这将使用 2 个参数启动控制台应用程序。现在在您的控制台应用程序中,您拥有

 static void Main(string[] args)

字符串数组 args 包含参数,现在您所要做的就是在您的应用程序启动时获取它们。

if (args == null || args.Length < 2)
{
    //the arguments are not passed correctly, or not at all
}
else
{
    try
    {
        yourFirstVariable = args[0];
        yourSecondVariable = args[1];
    }
    catch(Exception e)
    {
        Console.WriteLine("Something went wrong with setting the variables.")
        Console.WriteLine(e.Message);
    }
}

这可能是也可能不是您需要的确切代码,但至少会让您了解如何完成您想要的。

于 2013-01-10T10:36:19.043 回答