本文整理汇总了C#中ProcessHandle.GetCreateTime方法的典型用法代码示例。如果您正苦于以下问题:C# ProcessHandle.GetCreateTime方法的具体用法?C# ProcessHandle.GetCreateTime怎么用?C# ProcessHandle.GetCreateTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProcessHandle
的用法示例。
在下文中一共展示了ProcessHandle.GetCreateTime方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetProcessDetailsText
private static string GetProcessDetailsText(int pid)
{
// This function returns a string containing details about a process.
// The string builder which will contain the result.
StringBuilder sb = new StringBuilder();
sb.AppendLine("Process PID " + pid.ToString() + ":");
sb.AppendLine();
try
{
using (var phandle = new ProcessHandle(pid, ProcessAccess.QueryLimitedInformation))
{
var fileName = phandle.GetImageFileName();
sb.AppendLine("Native file name: " + fileName);
fileName = FileUtils.GetFileName(fileName);
sb.AppendLine("DOS file name: " + fileName);
try
{
var fileInfo = FileVersionInfo.GetVersionInfo(fileName);
sb.AppendLine("Description: " + fileInfo.FileDescription);
sb.AppendLine("Company: " + fileInfo.CompanyName);
sb.AppendLine("Version: " + fileInfo.FileVersion);
}
catch (Exception ex2)
{
sb.AppendLine("Version info section failed! " + ex2.Message);
}
sb.AppendLine("Started: " + phandle.GetCreateTime().ToString());
var memoryInfo = phandle.GetMemoryStatistics();
sb.AppendLine("WS: " + Utils.FormatSize(memoryInfo.WorkingSetSize));
sb.AppendLine("Pagefile usage: " + Utils.FormatSize(memoryInfo.PagefileUsage));
}
}
catch (Exception ex)
{
sb.AppendLine("Basic info section failed! " + ex.Message);
}
try
{
using (var phandle = new ProcessHandle(pid, ProcessAccess.QueryLimitedInformation | ProcessAccess.VmRead))
{
var commandLine = phandle.GetCommandLine();
var currentDirectory = phandle.GetPebString(PebOffset.CurrentDirectoryPath);
sb.AppendLine("Command line: " + commandLine);
sb.AppendLine("Current directory: " + currentDirectory);
}
}
catch (Exception ex)
{
sb.AppendLine("PEB info section failed! " + ex.Message);
}
sb.AppendLine();
sb.AppendLine("Modules:");
sb.AppendLine();
try
{
using (var phandle = new ProcessHandle(pid, ProcessAccess.QueryLimitedInformation | ProcessAccess.VmRead))
{
foreach (var module in phandle.GetModules())
{
sb.AppendLine(module.FileName);
sb.Append(" [0x" + module.BaseAddress.ToInt32().ToString("x") + ", ");
sb.AppendLine(Utils.FormatSize(module.Size) + "] ");
sb.AppendLine(" Flags: " + module.Flags.ToString());
try
{
var fileInfo = FileVersionInfo.GetVersionInfo(module.FileName);
sb.AppendLine(" Description: " + fileInfo.FileDescription);
sb.AppendLine(" Company: " + fileInfo.CompanyName);
sb.AppendLine(" Version: " + fileInfo.FileVersion);
}
catch (Exception ex2)
{
sb.AppendLine(" Version info failed! " + ex2.Message);
}
sb.AppendLine();
}
}
}
catch (Exception ex)
{
sb.AppendLine("Modules section failed! " + ex.Message);
}
sb.AppendLine("Token:");
//.........这里部分代码省略.........