vote up 6 vote down star
2

In Windows, how do I determine (using c#) what process locked a file?

Third party tools are helpful, but not what I'm looking for here, thanks.

flag

6 Answers

vote up 4 vote down check

Not very straight forward, but on Vista and above you can use the restart manager API's to see who is using a file. http://blogs.msdn.com/vistacompatteam/archive/2007/02/07/internet-explorer-caches-settings.aspx includes details on using this to detect which process has iexplore.exe open.

Omitting a lot of detail:

// Start an RM session
RmStartSession(&sessionHandle, 0, sessionKey);
// Register the file you are checking
RmRegisterResources(sessionHandle, 1, filePathArray, 0, NULL, 0, NULL);
// Get all processes that have that file open.
RmGetList(sessionHAndle, &nProcInfoNeeded, &nProcInfo, processes, &rebootReason);
RmEndSession(sessionHandle);
link|flag
vote up 4 vote down

Try WhosLocking, it comes with source code.

link|flag
vote up 1 vote down

I believe that you need code running in kernel mode to completely answer the question (but I haven't looked at the restart manager API).

You can enumerate all processes and their modules - so if the file you're looking for is a module (DLL, EXE, OCX...), you're good to go. But if it's a text file for example, you have to look at the kernel handle table which you cannot see from user mode. Handle.exe has a kernel driver in order to do that.

link|flag
vote up 1 vote down

try unlocker (http://ccollomb.free.fr/unlocker/) if you try and delete the file that is locked by another process it will list the process(es) that have the file locked. You can then unlock the file by shutting down those processes.

link|flag
oops did not notice that you wanted it progmaticly – AndrewB May 13 at 23:05
this is a great app, i'm voting up your answer because of it. – aronchick May 14 at 16:40
vote up 0 vote down

Handle, from Windows Sysinternals

This is a free command-line utility provided by microsoft

You could run it, and parse the result.

link|flag
This is not what the OP asked for – Trap May 13 at 22:09
@Trap What the problem with my answer? Do you know this utility? – Daniel Silveira May 13 at 22:12
Not sure running a 3rd party tool and parsing output counts as "programatically". – Michael May 13 at 22:20
Well, if you can write a program that executes the 3rd party tool (you can) and parses the output (you can) then I'd say that's programmatic. Albeit, not quite what the OP was looking for. – devinb May 13 at 22:25
@Daniel You need to have it installed, have administrative privileges and rely on the user interface output. Can't think of a less elegant solution let alone a 'programmatical' one. – Trap May 13 at 22:45
show 2 more comments
vote up 0 vote down

You absolutely don't need to run in Kernel mode (!!!)
It's a Win32 FAQ since Windows 95 (!) (in C, Google groups, Win32) : read the handle table, from User mode of course, and get the PID from the File handle ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.