Làm cách nào để biết quy trình nào đang khóa tệp bằng .NET?


154

Tôi đã thấy một số câu trả lời về việc sử dụng Xử lý hoặc Giám sát quy trình , nhưng tôi muốn có thể tìm ra mã của riêng mình (C #) mà quá trình đang khóa một tệp.

Tôi có một cảm giác khó chịu rằng tôi sẽ phải chơi trò chơi trong API win32, nhưng nếu bất cứ ai đã làm điều này và có thể đưa tôi đi đúng hướng, tôi thực sự đánh giá cao sự giúp đỡ.

Cập nhật

Liên kết đến các câu hỏi tương tự


Câu trả lời:


37

Một trong những điều tốt handle.exelà bạn có thể chạy nó như một quy trình con và phân tích đầu ra.

Chúng tôi làm điều này trong kịch bản triển khai của chúng tôi - hoạt động như một sự quyến rũ.


21
nhưng hand.exe không thể được phân phối cùng với phần mềm của bạn
ngư lôi

1
Điểm tốt. Đây không phải là vấn đề với tập lệnh triển khai (được sử dụng nội bộ), nhưng sẽ có trong các kịch bản khác.
orip

2
bất kỳ mẫu mã nguồn đầy đủ trong C #? quá hợp lệ cho quá trình get đang khóa một FILEER?
Kiquenet

3
Kiểm tra câu trả lời của tôi để biết giải pháp không yêu cầu stack.exe stackoverflow.com/a/20623311/141172
Eric J.

"Bạn phải có đặc quyền quản trị để chạy Xử lý."
Uwe Keim

135

Từ lâu, không thể có được danh sách các quy trình khóa tệp một cách đáng tin cậy vì Windows đơn giản là không theo dõi thông tin đó. Để hỗ trợ API Trình quản lý khởi động lại , thông tin đó hiện được theo dõi.

Tôi kết hợp mã lấy đường dẫn của tệp và trả về một List<Process>trong tất cả các quy trình đang khóa tệp đó.

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

Sử dụng từ Quyền hạn chế (ví dụ: IIS)

Cuộc gọi này truy cập vào sổ đăng ký. Nếu quy trình không có quyền làm như vậy, bạn sẽ nhận được ERROR_WRITE_FAULT, nghĩa là An operation was unable to read or write to the registry . Bạn có thể chọn lọc cấp quyền cho tài khoản bị hạn chế của mình cho phần cần thiết của sổ đăng ký. Mặc dù an toàn hơn khi quy trình truy cập hạn chế của bạn đặt cờ (ví dụ: trong cơ sở dữ liệu hoặc hệ thống tệp hoặc bằng cách sử dụng cơ chế giao tiếp giữa các quy trình như hàng đợi hoặc ống có tên) và có quy trình thứ hai gọi API khởi động lại Trình quản lý.

Cấp quyền khác tối thiểu cho người dùng IIS là một rủi ro bảo mật.


Có ai đã thử chưa, có vẻ như nó thực sự có thể hoạt động (đối với các cửa sổ trên Vista và srv 2008)
Daniel Mošmondor

1
@Blagoh: Tôi không tin Trình quản lý khởi động lại có sẵn trên Windows XP. Bạn sẽ cần phải sử dụng một trong những phương pháp khác, kém chính xác hơn được đăng ở đây.
Eric J.

4
@Blagoh: Nếu bạn chỉ muốn biết ai đang khóa một DLL cụ thể, bạn có thể sử dụng tasklist /m YourDllName.dllvà phân tích đầu ra. Xem stackoverflow.com/questions/152506/ Mạnh
Eric J.

19
Chỉ có giải pháp không yêu cầu công cụ của bên thứ 3 hoặc các lệnh gọi API không có giấy tờ. Cũng nên là câu trả lời được chấp nhận.
IInspectable

4
Tôi đã dùng thử (và nó hoạt động) trên Windows 2008R2, Windows 2012R2, Windows 7 và Windows 10. Tôi thấy rằng nó phải được chạy với các đặc quyền nâng cao trong nhiều trường hợp nếu không nó bị lỗi khi cố gắng lấy danh sách quy trình khóa một tập tin.
Jay

60

Việc gọi Win32 từ C # là rất phức tạp.

Bạn nên sử dụng công cụ Handle.exe .

Sau đó, mã C # của bạn phải như sau:

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
Ví dụ hay, nhưng theo hiểu biết của tôi, giờ đây ,.exe đang hiển thị một dấu nhắc khó chịu khi chấp nhận một số điều kiện khi bạn chạy nó trên máy khách lần đầu tiên, theo ý kiến ​​của tôi, không đủ điều kiện
Arsen Zahray

13
@Arsen Zahray: Bạn có thể tự động chấp nhận eula bằng cách chuyển qua tùy chọn dòng lệnh của /accepteula. Tôi đã cập nhật câu trả lời của Gennocera với sự thay đổi.
Jon Lồng

Phiên bản nào của Handle.exe bạn đã sử dụng? V4 mới nhất dường như được thay đổi theo cách Broken. / accepteula và Tên tệp không còn được hỗ trợ
Venson

3
Bạn không thể phân phối lạihandle.exe
Basic

4
Tôi không đồng ý - nó không có phức tạp khi gọi win32 api từ c #.
Idan

10

Tôi đã có vấn đề với giải pháp của stefan . Dưới đây là một phiên bản sửa đổi dường như hoạt động tốt.

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

CẬP NHẬT

Nếu bạn chỉ muốn biết quá trình nào đang khóa một DLL cụ thể, bạn có thể thực thi và phân tích đầu ra của tasklist /m YourDllName.dll. Hoạt động trên Windows XP trở lên. Xem

Cái này làm gì danh sách nhiệm vụ / m "mscor *"


Tôi rất thất bại khi thấy tại sao myProcessArraymột thành viên trong lớp (nhưng cũng thực sự trở về từ getFileProcesses ()? Cũng vậy myProcess.
Oskar Berggren

7

Điều này làm việc cho các DLL bị khóa bởi các quá trình khác. Thường trình này sẽ không tìm ra ví dụ rằng một tệp văn bản bị khóa bởi một quá trình từ.

C #:

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

Trong ví dụ của tôi, tôi sử dụng msi.dll wich không phải là .Net DLL.
Stefan

0

đơn giản hơn với 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();
    }

dường như chỉ nghĩ lại một ngoại lệ tương tự
Tạp chí Sinaological

Đưa ra lỗi. một quá trình 32 bit không thể truy cập mô-đun của quá trình 64 bit.
ajinkya
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.