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.
|
2
|
|
|
|
|
|
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:
|
||
|
|
|
|
Try WhosLocking, it comes with source code. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
Handle, from Windows Sysinternals This is a free command-line utility provided by microsoft You could run it, and parse the result. |
||||||||||
|
|
|
You absolutely don't need to run in Kernel mode (!!!) |
||
|
|