假设我已经拥有窗口的句柄,我可以使用GetWindowThreadProcessId
获取PID。有没有办法可以获得进程名称而无需获取所有进程并尝试匹配我的PID?
答案 0 :(得分:17)
您可以使用Process.GetProcessById
获取Process
。 Process
有很多关于正在运行的程序的信息。 Process.ProcessName
为您提供名称,Process.MainModule.FileName
为您提供可执行文件的名称。
答案 1 :(得分:13)
Process.GetProcessById(id).ProcessName
答案 2 :(得分:0)
//这是一个返回任务管理器内存的简洁方法。如果进程id不存在,它将抛出异常并为内存返回0
/// <summary>
/// Gets the process memory.
/// </summary>
/// <param name="processId">The process identifier.</param>
/// <returns></returns>
/// <para> </para>
/// <para> </para>
/// <exception cref="ArgumentException"> </exception>
/// <exception cref="ArgumentNullException"> </exception>
/// <exception cref="ComponentModel.Win32Exception"> </exception>
/// <exception cref="InvalidOperationException"> </exception>
/// <exception cref="PlatformNotSupportedException"> </exception>
/// <exception cref="UnauthorizedAccessException"> </exception>
public static long GetProcessMemory(int processId)
{
try
{
var instanceName = Process.GetProcessById(processId).ProcessName;
using (var performanceCounter = new PerformanceCounter("Process", "Working Set - Private", instanceName))
{
return performanceCounter.RawValue / Convert.ToInt64(1024);
}
}
catch (Exception)
{
return 0;
}
}