0

winrarコマンドラインユーティリティを使用してrarファイルを作成するアプリケーションでWindowsアプリケーションを開発しています。

コード

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 に答える