I want to terminate an application using the full file path via vb.net, yet I could not find it under Process. I was hoping for an easy Process.Stop(filepath), like with Process.Start, but no such luck.
How can I do so?
|
2
|
|||||
|
|
|
You would have to look into each process' Modules property, and, in turn, check the filenames against your desired path. Here's an example: VB.NET
C#
EDIT: updated the code to take case sensitivity into account for string comparisons. |
||||||||||
|
|
|
try System.Diagnostics.Process.GetProcessesByName(nameOfExeFile).First().Kill() This ignores the path of the file. |
||
|