up vote 40 down vote favorite
12
share [g+] share [fb]

One of my favourite tools for linux is lsof - a real swiss army knife!

Today I found myself wondering which programs on a WinXP system had a specific file open. Is there any equivalent utility to lsof? Additionally, the file in question was over a network share so I'm not sure if that complicates matters.

link|improve this question

75% accept rate
feedback

8 Answers

up vote 26 down vote accepted

Use Process Explorer from the Sysinternals Suite, the Find Handle or DLL function will let you search for the process with that file open.

link|improve this answer
Does this really answer the question? Process Explorer lets you see which files are open for a particular process/handle/dll/whatever, but that's the reverse mapping. See my answer stackoverflow.com/questions/15708/… to this question. – Greg Mattes Oct 9 '08 at 17:37
3  
Yes it does. Click on Find Handle or Dll (or hit Ctrl-F) , type in the name of the file you are searching for, and you end up with a list of processes with that file open. – Jay Hofacker Oct 10 '08 at 0:07
Process Explorer has now been renamed and bundled into "Process Monitor". – Matthew McCullough Feb 26 '09 at 15:46
feedback

the equivalent of lsof -p pid

is combined output from sysinternals handle and listdlls, ie

handle -p pid

listdlls -p pid

you can find out pid with sysinternals pslist

link|improve this answer
3  
+1 for command-line solution – Leonel Apr 1 '10 at 21:40
feedback

Try Handle. Filemon & Regmon are also great for trying to figure out what the duce program foo is doing to your system.

link|improve this answer
feedback

Try Unlocker.

The Unlocker site has a nifty chart (scroll down after following the link) that shows a comparison to other tools. Obviously such comparisons are usually biased since they are typically written by the tool author, but the chart at least lists the alternatives so that you can try them for yourself.

link|improve this answer
Unlocker only lists locked files, not opened files. Most Windows software locks the DLL it uses but not your documents. – Tobias Mar 26 '10 at 10:26
feedback

If you right-click on your "Computer" (or "My Computer") icon and select "Manage" from the pop-up menu, that'll take you to the Computer Management console.

In there, under System Tools\Shared Folders, you'll find "Open Files". This is probably close to what you want, but if the file is on a network share then you'd need to do the same thing on the server on which the file lives.

link|improve this answer
feedback

If the file is a .dll then you can use the TaskList command line app to see whose got it open:

TaskList /M nameof.dll
link|improve this answer
feedback

Use Process Explorer to find the process id. Then use Handle to find out what files are open.

Eg handle -p

I like this approach because you are using utilities from Microsoft itself.

link|improve this answer
feedback

In OpenedFilesView, under the Options menu, there is a menu item named "Show Network Files". Perhaps with that enabled, the aforementioned utility is of some use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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