Last active
January 3, 2016 20:19
-
-
Save CoolOppo/8513882 to your computer and use it in GitHub Desktop.
Checks if a process is open.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static bool IsOpen(string pName) // Checks if a given process with the "friendly name" (that is, the process without ".exe" appended) is open. Returns false if it is closed, true if it is open. | |
{ | |
Process[] processArray = Process.GetProcessesByName(pName); // Make an array of processes (the data type) of all of the running processes with the "friendly name" | |
if (processArray.Length == 0) // Does the array have a length of zero? | |
return false; // If it does, there are no processes with the given "friendly name", therefore return false. | |
else | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment