R Roy Nov 17, 2009 #1 Is there a way to find out if an executable (with known full path for the exe file) is running or not in C#?
Is there a way to find out if an executable (with known full path for the exe file) is running or not in C#?
P Peter Duniho Nov 17, 2009 #2 Roy said: Is there a way to find out if an executable (with known full path for the exe file) is running or not in C#? Click to expand... Yes. See: Process.GetProcesses() Process.MainModule ProcessModule.FileName (All in the System.Diagnostics namespace)
Roy said: Is there a way to find out if an executable (with known full path for the exe file) is running or not in C#? Click to expand... Yes. See: Process.GetProcesses() Process.MainModule ProcessModule.FileName (All in the System.Diagnostics namespace)