Tagged Questions

4
votes
4answers
777 views

Enumerating File Handles in C#

I would like to know whether it is possible to enumerate file handles in c#, maybe using Win32API. This is easily done for window and process handles, but it seems that it is not possible for file ...
0
votes
2answers
704 views

Monitoring a sub-process / can I get TotalProcessorTime for a Process group?

Is there a way to get the Process.TotalProcessorTime that reflects a process PLUS any processes that it has spawned? Alternatively, how can I verify that the process (or it's descendants) are still ...