前提・実現したいこと
WPF(C#)でコマンドプロンプトのプロセスを実行するアプリを作成しています。
標準出力の読み取り時に処理が戻ってこなくなりフリーズしてしまいます。
発生している問題・エラーメッセージ
クラスメンバにProcessStartInfo
クリックイベント発生時にProcessをnew
ProacessにメンバのProcessStartInfoを渡して、
Processスタート
標準出力の読み取り ---> フリーズ。
そこで止まることをデバッグで確認しました。
該当のソースコード
C#
1using System.Diagnostics; 2private void SetPSInfo(string cmd) 3{ 4 //cmd.exeを取得 5 m_psInfo.FileName = Environment.GetEnvironmentVariable("ComSpec"); 6 //shellを使用しない 7 m_psInfo.UseShellExecute = false; 8 //標準出力の読み取り 9 m_psInfo.RedirectStandardOutput = true; 10 //標準入力の禁止 11 m_psInfo.RedirectStandardInput = false; 12 //エラー出力の読み取り 13 m_psInfo.RedirectStandardError = true; 14 //ウィンドウを表示しない:true 表示する:false 15 m_psInfo.CreateNoWindow = true; 16 //実行コマンドの指定 17 m_psInfo.Arguments = @"c/ " + cmd; 18} 19 20private void Process() 21{ 22 Process process = new Process(); 23 try 24 { 25 process.StartInfo = m_psInfo; 26 27 //起動 28 process.Start(); 29 //出力を読み取る 30 string output = process.StandardOutput.ReadToEnd(); 31 string error = process.StandardError.ReadToEnd(); 32 } 33 catch (Exception e) 34 { 35 } 36 finally 37 { 38 process.Close(); 39 } 40} 41 42private void StartBtn_ClickEvent(object sender, RoutedEventArgs e) 43{ 44 string cmd = "ipconfig"; 45 SetPSInfo(cmd); 46 FtpStart(); 47}
試したこと
以下のソースのようにprosessインスタンスのプロパティに直接ProcessStartInfoを代入した場合は
フリーズしませんでしたが、ProcessStartInfoをメンバとして扱いたいのでやりたくありません。
C#
1 Process process = new Process(); 2 // Process オブジェクトを生成 3 System.Diagnostics.Process p = new System.Diagnostics.Process(); 4 //ComSpec(cmd.exe)のパスを取得して、FileNameプロパティに指定 5 p.StartInfo.FileName = 6 System.Environment.GetEnvironmentVariable("ComSpec"); 7 //出力を読み取れるようにする 8 p.StartInfo.UseShellExecute = false; 9 p.StartInfo.RedirectStandardOutput = true; 10 p.StartInfo.RedirectStandardInput = false; 11 //ウィンドウを表示しないようにする 12 p.StartInfo.CreateNoWindow = true; 13 14 p.StartInfo.Arguments = @"/c " + cmd; 15 16 //起動 17 p.Start(); 18 //出力を読み取る 19 string key = p.StandardOutput.ReadToEnd();
補足情報(FW/ツールのバージョンなど)
vs 2019
.NET 5.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/25 00:11