ฉันจะทราบได้อย่างไรว่ากระบวนการใดที่ล็อกไฟล์โดยใช้. NET


154

ฉันเห็นคำตอบหลายข้อเกี่ยวกับการใช้การจัดการหรือการตรวจสอบกระบวนการแต่ฉันต้องการที่จะค้นหาในรหัสของตัวเอง (C #) ซึ่งกระบวนการจะล็อคไฟล์

ฉันมีความรู้สึกที่น่ารังเกียจว่าฉันจะต้องทำสิ่งต่าง ๆ ใน win32 API แต่ถ้าใครทำสิ่งนี้ไปแล้วและสามารถนำฉันไปสู่เส้นทางที่ถูกต้องฉันจะขอบคุณความช่วยเหลือจริงๆ

ปรับปรุง

ลิงก์ไปยังคำถามที่คล้ายกัน


ที่เกี่ยวข้อง - stackoverflow.com/questions/3526802/…
vapcguy

คำตอบ:


37

สิ่งหนึ่งที่ดีเกี่ยวกับhandle.exeคือคุณสามารถเรียกใช้เป็นกระบวนการย่อยและแยกวิเคราะห์ผลลัพธ์

เราทำสิ่งนี้ในสคริปต์การใช้งานของเรา - ทำงานได้อย่างมีเสน่ห์


21
แต่ handle.exe ไม่สามารถแจกจ่ายกับซอฟต์แวร์ของคุณได้
torpederos

1
จุดดี. นี่ไม่ใช่ปัญหาของสคริปต์การปรับใช้ (ใช้ภายใน) แต่จะอยู่ในสถานการณ์อื่น ๆ
orip

2
ตัวอย่างซอร์สโค้ดแบบเต็มใน C #? ถูกต้องเช่นกันสำหรับกระบวนการรับกำลังล็อค FOLDER หรือไม่
Kiquenet

3
ลองอ่านคำตอบของฉันสำหรับวิธีแก้ปัญหาที่ไม่ต้องใช้ handle.exe stackoverflow.com/a/20623311/141172
Eric J.

"คุณต้องมีสิทธิ์ระดับผู้ดูแลในการเรียกใช้หมายเลขอ้างอิง"
Uwe Keim

135

นานมาแล้วมันเป็นไปไม่ได้ที่จะได้รายชื่อกระบวนการที่ล็อคไฟล์อย่างน่าเชื่อถือเพราะ Windows ไม่ได้ติดตามข้อมูลนั้น เพื่อรองรับRestart Manager APIตอนนี้ข้อมูลจะถูกติดตาม

ฉันรวบรวมรหัสที่ใช้เส้นทางของไฟล์และส่งกลับList<Process>กระบวนการทั้งหมดที่ล็อคไฟล์นั้น

using System.Runtime.InteropServices;
using System.Diagnostics;
using System;
using System.Collections.Generic;

static public class FileUtil
{
    [StructLayout(LayoutKind.Sequential)]
    struct RM_UNIQUE_PROCESS
    {
        public int dwProcessId;
        public System.Runtime.InteropServices.ComTypes.FILETIME ProcessStartTime;
    }

    const int RmRebootReasonNone = 0;
    const int CCH_RM_MAX_APP_NAME = 255;
    const int CCH_RM_MAX_SVC_NAME = 63;

    enum RM_APP_TYPE
    {
        RmUnknownApp = 0,
        RmMainWindow = 1,
        RmOtherWindow = 2,
        RmService = 3,
        RmExplorer = 4,
        RmConsole = 5,
        RmCritical = 1000
    }

    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    struct RM_PROCESS_INFO
    {
        public RM_UNIQUE_PROCESS Process;

        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = CCH_RM_MAX_APP_NAME + 1)]
        public string strAppName;

        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = CCH_RM_MAX_SVC_NAME + 1)]
        public string strServiceShortName;

        public RM_APP_TYPE ApplicationType;
        public uint AppStatus;
        public uint TSSessionId;
        [MarshalAs(UnmanagedType.Bool)]
        public bool bRestartable;
    }

    [DllImport("rstrtmgr.dll", CharSet = CharSet.Unicode)]
    static extern int RmRegisterResources(uint pSessionHandle,
                                          UInt32 nFiles,
                                          string[] rgsFilenames,
                                          UInt32 nApplications,
                                          [In] RM_UNIQUE_PROCESS[] rgApplications,
                                          UInt32 nServices,
                                          string[] rgsServiceNames);

    [DllImport("rstrtmgr.dll", CharSet = CharSet.Auto)]
    static extern int RmStartSession(out uint pSessionHandle, int dwSessionFlags, string strSessionKey);

    [DllImport("rstrtmgr.dll")]
    static extern int RmEndSession(uint pSessionHandle);

    [DllImport("rstrtmgr.dll")]
    static extern int RmGetList(uint dwSessionHandle,
                                out uint pnProcInfoNeeded,
                                ref uint pnProcInfo,
                                [In, Out] RM_PROCESS_INFO[] rgAffectedApps,
                                ref uint lpdwRebootReasons);

    /// <summary>
    /// Find out what process(es) have a lock on the specified file.
    /// </summary>
    /// <param name="path">Path of the file.</param>
    /// <returns>Processes locking the file</returns>
    /// <remarks>See also:
    /// http://msdn.microsoft.com/en-us/library/windows/desktop/aa373661(v=vs.85).aspx
    /// http://wyupdate.googlecode.com/svn-history/r401/trunk/frmFilesInUse.cs (no copyright in code at time of viewing)
    /// 
    /// </remarks>
    static public List<Process> WhoIsLocking(string path)
    {
        uint handle;
        string key = Guid.NewGuid().ToString();
        List<Process> processes = new List<Process>();

        int res = RmStartSession(out handle, 0, key);
        if (res != 0) throw new Exception("Could not begin restart session.  Unable to determine file locker.");

        try
        {
            const int ERROR_MORE_DATA = 234;
            uint pnProcInfoNeeded = 0,
                 pnProcInfo = 0,
                 lpdwRebootReasons = RmRebootReasonNone;

            string[] resources = new string[] { path }; // Just checking on one resource.

            res = RmRegisterResources(handle, (uint)resources.Length, resources, 0, null, 0, null);

            if (res != 0) throw new Exception("Could not register resource.");                                    

            //Note: there's a race condition here -- the first call to RmGetList() returns
            //      the total number of process. However, when we call RmGetList() again to get
            //      the actual processes this number may have increased.
            res = RmGetList(handle, out pnProcInfoNeeded, ref pnProcInfo, null, ref lpdwRebootReasons);

            if (res == ERROR_MORE_DATA)
            {
                // Create an array to store the process results
                RM_PROCESS_INFO[] processInfo = new RM_PROCESS_INFO[pnProcInfoNeeded];
                pnProcInfo = pnProcInfoNeeded;

                // Get the list
                res = RmGetList(handle, out pnProcInfoNeeded, ref pnProcInfo, processInfo, ref lpdwRebootReasons);
                if (res == 0)
                {
                    processes = new List<Process>((int)pnProcInfo);

                    // Enumerate all of the results and add them to the 
                    // list to be returned
                    for (int i = 0; i < pnProcInfo; i++)
                    {
                        try
                        {
                            processes.Add(Process.GetProcessById(processInfo[i].Process.dwProcessId));
                        }
                        // catch the error -- in case the process is no longer running
                        catch (ArgumentException) { }
                    }
                }
                else throw new Exception("Could not list processes locking resource.");                    
            }
            else if (res != 0) throw new Exception("Could not list processes locking resource. Failed to get size of result.");                    
        }
        finally
        {
            RmEndSession(handle);
        }

        return processes;
    }
}

การใช้จากสิทธิ์ที่ จำกัด (เช่น IIS)

การโทรนี้เข้าถึงรีจิสทรี หากกระบวนการไม่ได้รับอนุญาตให้ทำเช่นนั้นคุณจะได้รับ ERROR_WRITE_FAULT, ความหมาย An operation was unable to read or write to the registryคุณสามารถเลือกให้สิทธิ์ในบัญชีที่ถูก จำกัด ของคุณในส่วนที่จำเป็นของรีจิสทรี ปลอดภัยยิ่งขึ้นแม้ว่าจะมีกระบวนการ จำกัด การเข้าถึงของคุณตั้งค่าสถานะ (เช่นในฐานข้อมูลหรือระบบไฟล์หรือโดยใช้กลไกการสื่อสารระหว่างกระบวนการเช่นคิวหรือไพพ์ที่มีชื่อ) และมีกระบวนการที่สองเรียก Restart Manager API

การอนุญาตให้ใช้สิทธิ์อื่นนอกจากผู้ใช้ IIS เป็นความเสี่ยงด้านความปลอดภัย


มีใครลองบ้างดูว่ามันใช้งานได้จริง (สำหรับ windows ด้านบน Vista และ srv 2008)
Daniel Mošmondor

1
@Blagoh: ฉันไม่เชื่อว่าตัวจัดการการรีสตาร์ทจะพร้อมใช้งานบน Windows XP คุณจะต้องหันไปใช้วิธีอื่นที่ไม่แม่นยำซึ่งโพสต์ไว้ที่นี่
Eric J.

4
@Blagoh: ถ้าคุณแค่อยากรู้ว่าใครกำลังล็อค DLL เฉพาะอยู่คุณสามารถใช้tasklist /m YourDllName.dllและแยกวิเคราะห์ผลลัพธ์ได้ ดูstackoverflow.com/questions/152506/…
Eric J.

19
โซลูชันที่ไม่ต้องใช้เครื่องมือของบุคคลที่สามหรือการเรียก API ที่ไม่มีเอกสาร ควรเป็นคำตอบที่ยอมรับได้ดี
IIsspectable

4
ฉันได้ลองแล้ว (และใช้งานได้) บน Windows 2008R2, Windows 2012R2, Windows 7 และ Windows 10 ฉันพบว่ามันต้องทำงานด้วยสิทธิ์ระดับสูงในหลาย ๆ สถานการณ์ไม่เช่นนั้นจะล้มเหลวเมื่อพยายามรับรายการ กระบวนการล็อคไฟล์
Jay

60

มันซับซ้อนมากในการเรียกใช้ Win32 จาก C #

คุณควรใช้เครื่องมือHandle.exe

หลังจากนั้นรหัส C # ของคุณจะต้องเป็นดังนี้:

string fileName = @"c:\aaa.doc";//Path to locked file

Process tool = new Process();
tool.StartInfo.FileName = "handle.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();
}

1
ตัวอย่างที่ดี แต่จากความรู้ของฉัน handle.exe ตอนนี้แสดงพรอมต์ที่น่ารังเกียจที่จะยอมรับเงื่อนไขบางอย่างเมื่อคุณเรียกใช้บนเครื่องไคลเอ็นต์เป็นครั้งแรกซึ่งในความคิดของฉันตัดสิทธิ์
Arsen Zahray

13
@Arsen Zahray: คุณสามารถยอมรับ EULA /accepteulaโดยอัตโนมัติโดยผ่านในตัวเลือกบรรทัดคำสั่งของ ฉันได้อัปเดตคำตอบของ Gennady เมื่อมีการเปลี่ยนแปลง
Jon Cage

คุณใช้ Handle.exe รุ่นใด V4 ตัวใหม่ล่าสุดดูเหมือนจะมีการเปลี่ยนแปลงในทางที่ผิด / accepteula และ Filename ไม่รองรับอีกต่อไป
Venson

3
คุณไม่สามารถแจกจ่ายซ้ำได้handle.exe
พื้นฐาน

4
ฉันไม่เห็นด้วย - มันไม่มีความซับซ้อนเมื่อทำการเรียกใช้ win32 api จาก c #
Idan

10

ผมมีปัญหาเกี่ยวกับการแก้ปัญหาของสเตฟาน ด้านล่างเป็นรุ่นที่แก้ไขซึ่งดูเหมือนว่าจะทำงานได้ดี

using System;
using System.Collections;
using System.Diagnostics;
using System.Management;
using System.IO;

static class Module1
{
    static internal ArrayList myProcessArray = new ArrayList();
    private static Process myProcess;

    public static void Main()
    {
        string strFile = "c:\\windows\\system32\\msi.dll";
        ArrayList a = getFileProcesses(strFile);
        foreach (Process p in a)
        {
            Debug.Print(p.ProcessName);
        }
    }

    private static ArrayList getFileProcesses(string strFile)
    {
        myProcessArray.Clear();
        Process[] processes = Process.GetProcesses();
        int i = 0;
        for (i = 0; i <= processes.GetUpperBound(0) - 1; i++)
        {
            myProcess = processes[i];
            //if (!myProcess.HasExited) //This will cause an "Access is denied" error
            if (myProcess.Threads.Count > 0)
            {
                try
                {
                    ProcessModuleCollection modules = myProcess.Modules;
                    int j = 0;
                    for (j = 0; j <= modules.Count - 1; j++)
                    {
                        if ((modules[j].FileName.ToLower().CompareTo(strFile.ToLower()) == 0))
                        {
                            myProcessArray.Add(myProcess);
                            break;
                            // TODO: might not be correct. Was : Exit For
                        }
                    }
                }
                catch (Exception exception)
                {
                    //MsgBox(("Error : " & exception.Message)) 
                }
            }
        }

        return myProcessArray;
    }
}

UPDATE

ถ้าคุณเพียงต้องการที่จะทราบว่ากระบวนการ (e) จะล็อค DLL tasklist /m YourDllName.dllที่โดยเฉพาะอย่างยิ่งคุณสามารถดำเนินการและการแยกการส่งออกของ ทำงานบน Windows XP และใหม่กว่า ดู

สิ่งนี้ทำอะไร tasklist / m "mscor *"


ฉันล้มเหลวเป็นอย่างมากที่จะเห็นว่าทำไมmyProcessArrayสมาชิกคลาส (แต่กลับมาจาก getFileProcesses จริง ๆ ) (เช่นกันmyProcess)
Oskar Berggren

7

สิ่งนี้ใช้ได้กับ DLLs ที่ถูกล็อคโดยกระบวนการอื่น รูทีนนี้จะไม่ค้นหาตัวอย่างเช่นไฟล์ข้อความที่ถูกล็อคโดยกระบวนการคำ

ค#:

using System.Management; 
using System.IO;   

static class Module1 
{ 
static internal ArrayList myProcessArray = new ArrayList(); 
private static Process myProcess; 

public static void Main() 
{ 

    string strFile = "c:\\windows\\system32\\msi.dll"; 
    ArrayList a = getFileProcesses(strFile); 
    foreach (Process p in a) { 
        Debug.Print(p.ProcessName); 
    } 
} 


private static ArrayList getFileProcesses(string strFile) 
{ 
    myProcessArray.Clear(); 
    Process[] processes = Process.GetProcesses; 
    int i = 0; 
    for (i = 0; i <= processes.GetUpperBound(0) - 1; i++) { 
        myProcess = processes(i); 
        if (!myProcess.HasExited) { 
            try { 
                ProcessModuleCollection modules = myProcess.Modules; 
                int j = 0; 
                for (j = 0; j <= modules.Count - 1; j++) { 
                    if ((modules.Item(j).FileName.ToLower.CompareTo(strFile.ToLower) == 0)) { 
                        myProcessArray.Add(myProcess); 
                        break; // TODO: might not be correct. Was : Exit For 
                    } 
                } 
            } 
            catch (Exception exception) { 
            } 
            //MsgBox(("Error : " & exception.Message)) 
        } 
    } 
    return myProcessArray; 
} 
} 

VB.Net:

Imports System.Management
Imports System.IO

Module Module1
Friend myProcessArray As New ArrayList
Private myProcess As Process

Sub Main()

    Dim strFile As String = "c:\windows\system32\msi.dll"
    Dim a As ArrayList = getFileProcesses(strFile)
    For Each p As Process In a
        Debug.Print(p.ProcessName)
    Next
End Sub


Private Function getFileProcesses(ByVal strFile As String) As ArrayList
    myProcessArray.Clear()
    Dim processes As Process() = Process.GetProcesses
    Dim i As Integer
    For i = 0 To processes.GetUpperBound(0) - 1
        myProcess = processes(i)
        If Not myProcess.HasExited Then
            Try
                Dim modules As ProcessModuleCollection = myProcess.Modules
                Dim j As Integer
                For j = 0 To modules.Count - 1
                    If (modules.Item(j).FileName.ToLower.CompareTo(strFile.ToLower) = 0) Then
                        myProcessArray.Add(myProcess)
                        Exit For
                    End If
                Next j
            Catch exception As Exception
                'MsgBox(("Error : " & exception.Message))
            End Try
        End If
    Next i
    Return myProcessArray
End Function
End Module

ในตัวอย่างของฉันฉันใช้ msi.dll ซึ่งไม่ใช่. Net DLL
สเตฟาน

0

ง่ายขึ้นด้วย linq:

public void KillProcessesAssociatedToFile(string file)
    {
        GetProcessesAssociatedToFile(file).ForEach(x =>
        {
            x.Kill();
            x.WaitForExit(10000);
        });
    }

    public List<Process> GetProcessesAssociatedToFile(string file)
    {
        return Process.GetProcesses()
            .Where(x => !x.HasExited
                && x.Modules.Cast<ProcessModule>().ToList()
                    .Exists(y => y.FileName.ToLowerInvariant() == file.ToLowerInvariant())
                ).ToList();
    }

ดูเหมือนว่าจะ
รื้อฟื้น

ให้ข้อผิดพลาด กระบวนการ 32 บิตไม่สามารถเข้าถึงโมดูลของกระบวนการ 64 บิต
ajinkya
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.