-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProcessUtils.cs
63 lines (60 loc) · 2.17 KB
/
ProcessUtils.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System.Diagnostics;
namespace AntlrGen
{
public class ProcessUtils
{
public static Process SetupHiddenProcessAndStart(string fileName, string arguments, string workingDirectory,
DataReceivedEventHandler errorDataReceived, DataReceivedEventHandler outputDataReceived)
{
var process = new Process();
var startInfo = process.StartInfo;
startInfo.FileName = fileName;
startInfo.Arguments = arguments;
if (workingDirectory != null)
{
startInfo.WorkingDirectory = workingDirectory;
}
startInfo.RedirectStandardError = true;
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;
process.ErrorDataReceived += errorDataReceived;
process.OutputDataReceived += outputDataReceived;
process.EnableRaisingEvents = true;
process.Start();
process.BeginOutputReadLine();
process.BeginErrorReadLine();
return process;
}
public static bool IsProcessCanBeExecuted(string fileName, string arguments = "")
{
try
{
SetupHiddenProcessStartAndWait(fileName, arguments);
}
catch
{
return false;
}
return true;
}
public static Process SetupHiddenProcessStartAndWait(string fileName, string arguments, string workingDirectory = null)
{
var process = new Process();
var startInfo = process.StartInfo;
startInfo.FileName = fileName;
startInfo.Arguments = arguments;
if (workingDirectory != null)
{
startInfo.WorkingDirectory = workingDirectory;
}
startInfo.RedirectStandardError = true;
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;
process.Start();
process.WaitForExit();
return process;
}
}
}