gpt4 book ai didi

c# - 如何在 C# 中返回 Windows 进程列表?

转载 作者:行者123 更新时间:2023-11-30 21:22:44 25 4
gpt4 key购买 nike

如何使用 C# 获取当前机器上所有正在运行的进程的列表,包括图像名称、描述和进程 ID?我正在寻找类似于您在任务管理器“进程”选项卡下看到的内容,但没有资源信息。

最佳答案

您需要使用诊断包中提供的实用程序来执行此操作。我找到了这段代码,它工作正常。

这一行准确地检索了进程。然后您可以提取每个进程的属性。

`Process[] allProcs = Process.GetProcesses();

完整代码如下。根据需要定制`

using System;
using System.Diagnostics;

public class ListProcs
{
public static void Main()
{
int totMemory = 0;
Console.WriteLine("Info for all processes:");

Process[] allProcs = Process.GetProcesses();
foreach(Process thisProc in allProcs)
{
string procName = thisProc.ProcessName;
DateTime started = thisProc.StartTime;
int procID = thisProc.Id;
int memory = thisProc.VirtualMemorySize;
int priMemory = thisProc.PrivateMemorySize;
int physMemory = thisProc.WorkingSet;
totMemory += physMemory;
int priority = thisProc.BasePriority;
TimeSpan cpuTime = thisProc.TotalProcessorTime;

Console.WriteLine("Process: {0}, ID: {1}", procName, procID);
Console.WriteLine(" started: {0}", started.ToString());
Console.WriteLine(" CPU time: {0}", cpuTime.ToString());
Console.WriteLine(" virtual memory: {0}", memory);
Console.WriteLine(" private memory: {0}", priMemory);
Console.WriteLine(" physical memory: {0}", physMemory);
}

Console.WriteLine("\nTotal physical memory used: {0}", totMemory);
}
}

引用原文 article .

关于c# - 如何在 C# 中返回 Windows 进程列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2144242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com