Tagged Questions

0
votes
0answers
394 views

List open files by process

Assuming I have the pid or process name, how can I get the open files by that process in c#? The question has been asked before but I couldn't find what I was looking for. I know that each process ...
0
votes
3answers
174 views

How can you break on handle creation?

I have an application that spawns multiple child processes. Before launching a child, I create stdOut and stdErr handles to a log file (for example, if I am about to launch procA, i create handles to ...