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
  • 499
  • 2
  • 6
  • 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
  • 23,276
  • 18
  • 98
  • 168