vs2017 communityを使っています。
osはwin7です。
C#のコードでpythonのコードを起動しています。
pythonにはログを書き込むようにしています。
以下のようなコードで起動しています。
c#
1 private void doPythonScript(string[] args, string planDateTime, string site, string method) 2 { 3 string doDateTime = string.Empty; 4 string result = string.Empty; 5 string errorInfo = string.Empty; 6 7 toolStripStatusLabel1.Text = "スクレイピング中です..."; 8 9 Process process = new Process(); 10 process.StartInfo.UseShellExecute = false; 11 process.StartInfo.RedirectStandardInput = true; 12 process.StartInfo.RedirectStandardOutput = true; 13 process.StartInfo.RedirectStandardError = true; 14 process.StartInfo.CreateNoWindow = true; 15 process.EnableRaisingEvents = true; 16 process.SynchronizingObject = this; 17 18 process.OutputDataReceived += (sender, e) => 19 { 20 try 21 { 22 if (!process.Responding) 23 { 24 if (process.HasExited) 25 { 26 var s = process.StandardError.ReadToEnd(); 27 if (s.Length == 0) 28 { 29 doDateTime = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"); 30 result = "成功"; 31 errorInfo = string.Empty; 32 } 33 else 34 { 35 doDateTime = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"); 36 result = "失敗"; 37 errorInfo = s; 38 } 39 upsertData(planDateTime, doDateTime, site, method, result, errorInfo); 40 lvwSchedule.SelectedItems[0].SubItems[1].Text = doDateTime; 41 lvwSchedule.SelectedItems[0].SubItems[4].Text = result; 42 lvwSchedule.SelectedItems[0].SubItems[5].Text = errorInfo; 43 44 toolStripStatusLabel1.Text = string.Empty; 45 46 readLogFile(); 47 } 48 } 49 } 50 catch (InvalidOperationException os) 51 { 52 string s = os.Message; 53 } 54 }; 55 56 process.Exited += delegate 57 { 58 upsertData(planDateTime, doDateTime, site, method, result, errorInfo); 59 lvwSchedule.SelectedItems[0].SubItems[1].Text = doDateTime; 60 lvwSchedule.SelectedItems[0].SubItems[4].Text = result; 61 lvwSchedule.SelectedItems[0].SubItems[5].Text = errorInfo; 62 63 toolStripStatusLabel1.Text = string.Empty; 64 65 readLogFile(); 66 }; 67 68 process.StartInfo.FileName = "python"; 69 process.StartInfo.Arguments = string.Join(" ", args); 70 71 process.Start(); 72 process.BeginOutputReadLine(); 73 74 bool hasProcessExited = process.WaitForExit(1000); 75 process.Close(); 76 }
pythonが起動され終了するには分かっています。
ログに書き込まされているのを確認しました。
どうしても終了を検出できず、ステータスバーのテキストをクリアしたり、dbに書き込んだりログを読み込んだりできません。
終了時にステータスバーのテキストをクリアしたり、dbに書き込んだりログを読み込んだりしたいのですが、プロセスの終了を検出できません。
どうすればよいのでしょうか。
非同期で終了コードを検出することはできるのでしょうか。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。