Enumerating open handle
-
Hi! I saw something really cool on sysinterals.com. A program which could enumerate the open file handles of a process. Anyone who knows how to do that?
-
Hi! I saw something really cool on sysinterals.com. A program which could enumerate the open file handles of a process. Anyone who knows how to do that?
Take a look at the CodePile.COM ... in the "Tricks" section. Best regards, ----------- Igor Soukhov (Brainbench/Tekmetrics ID:50759) igor@soukhov.com | ICQ:57404554 | http://soukhov.com
-
Take a look at the CodePile.COM ... in the "Tricks" section. Best regards, ----------- Igor Soukhov (Brainbench/Tekmetrics ID:50759) igor@soukhov.com | ICQ:57404554 | http://soukhov.com
-
Hi! I saw something really cool on sysinterals.com. A program which could enumerate the open file handles of a process. Anyone who knows how to do that?
Hi, the mechanism that sysinternals and other commercial/freeware apps use is covered in an article at http://www.codeguru.com/files/FileObjectInfo.shtml . Of course it is not limited to process file handles only. You could enumerate all types of system handles that way. It works for NT-based systems only as far as i know. For Win XX there are some special deviceIo requests to get that information. Cheers, A.Focht.