1

Is there a way to get the list of Open Handles of a process in windows through python. I have able to find the solution in C/C++ through system calls but I have to do it in Python. Can Win32api help ??

Faheem
  • 509
  • 2
  • 7
  • 23

1 Answers1

0

Use the ctypes import, then you can do the same things (mostly) you can in C, but with Python.

Prof. Falken
  • 24,226
  • 19
  • 100
  • 173