码迷,mamicode.com
首页 > Windows程序 > 详细

使用C#如何查看哪些文件被哪些进程占用了

时间:2018-10-29 16:55:28      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:match   handle   RoCE   start   cut   var   name   使用   cep   

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));
}

使用C#如何查看哪些文件被哪些进程占用了

标签:match   handle   RoCE   start   cut   var   name   使用   cep   

原文地址:https://www.cnblogs.com/sun-net/p/9871397.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!