sun-net
string fileName = @"C:\Target\Plugins\print\NLog.dll";
//要检查被那个进程占用的文件
Process tool = new Process();
tool.StartInfo.FileName = @"C:\soft\Handle\handle64.exe";
tool.StartInfo.Arguments = fileName + " /accepteula";
tool.StartInfo.UseShellExecute = false;
tool.StartInfo.RedirectStandardOutput = true;
tool.Start();
tool.WaitForExit();
string outputTool = tool.StandardOutput.ReadToEnd();
string matchPattern = @"(?<=\s+pid:\s+)\b(\d+)\b(?=\s+)";
foreach (Match match in Regex.Matches(outputTool, matchPattern))
{
    //Process.GetProcessById(int.Parse(match.Value)).Kill();
    var pro = Process.GetProcessById(int.Parse(match.Value));
}

分类:

技术点:

相关文章:

  • 2021-11-21
  • 2021-11-21
  • 2022-01-02
  • 2021-11-21
  • 2021-12-25
  • 2021-11-21
  • 2021-11-21
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2022-01-02
  • 2021-12-19
  • 2021-09-12
  • 2022-01-18
相关资源
相似解决方案