How do I get the list of open file handles by process id in C#?
I\'m interested in digging down and getting the file names as well.
Looking for the program
You can P/INVOKE into the NtQuerySystemInformation function to query for all handles and then go from there. This Google groups discussion has details.