0

我正在该应用程序中开发一个 Windows 应用程序,我使用 winrar 命令行实用程序制作 rar 文件。

代码

public static string RarFiles(string rarPackagePath,
        Dictionary<int, string> accFiles)
    {
        string error = "";
        try
        {
            string[] files = new string[accFiles.Count];
            int i = 0;
            foreach (var fList_item in accFiles)
            {
                files[i] = "\"" + fList_item.Value;
                i++;
            }
            string fileList = string.Join("\" ", files);
            fileList += "\"";
            System.Diagnostics.ProcessStartInfo sdp = new System.Diagnostics.ProcessStartInfo();
            string cmdArgs = string.Format("A {0} {1} -ep1 -r",
                String.Format("\"{0}\"", rarPackagePath),
                fileList);
            sdp.ErrorDialog = true;
            sdp.UseShellExecute = true;
            sdp.Arguments = cmdArgs;
            sdp.FileName = winrarPath;//Winrar.exe path
            sdp.CreateNoWindow = false;
            sdp.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
            System.Diagnostics.Process process = System.Diagnostics.Process.Start(sdp);
            process.WaitForExit();
            //string s = process.StandardOutput.ReadToEnd();
            error = "OK";
        }
        catch (Exception ex)
        {
            error = ex.Message;
        }
        return error;
    }

谁能告诉我如何处理winrar诊断消息。

4

1 回答 1

0

我想你错过了一些部分:

尝试添加这些:

sdp.StartInfo.RedirectStandardOutput = true;

在 Start 之后,添加一个字符串以获取输出。之后,调用 WaitForExit()

sdp.Start();
string output = stillc.StandardOutput.ReadToEnd();
sdp.WaitForExit();

*注意:这仅在控制台窗口中显示输出时才有效。

希望能帮助到你 :)

于 2013-06-14T11:45:06.550 回答