11

How to print name of file open by some process (PID) in window? Or All Processes (PID) currently open a file.
Process Explorer is a utility works for same. But how does it work not mentioned? Any /proc filesystem kind of thing present in windows?

Can we read any Window's Registry?  
I wants to write a programming code And I rarely work on windows. 

Got two solutions in Python:
1. import psutil
2. import win32api, win32con, win32process

But it is still a question to me!
1. How does these libraries works?
2. Any register, memory or virtual file system keeps this information?

If its possible in window, Why this information not present in TasK-Manager?

Grijesh Chauhan
  • 57,103
  • 20
  • 141
  • 208

2 Answers2

22

Here is the platform independent solution in python.

   import psutil
   p = psutil.Process(os.getpid()) # or PID of process
   p.open_files()

So i refer you psutil package it has too good functions for getting information on running processes

Giampaolo Rodolà
  • 12,488
  • 6
  • 68
  • 60
Rahul Gautam
  • 4,749
  • 2
  • 21
  • 30
1

Here's a way to get a filename from pid using the Win32 API:

import win32api, win32con, win32process

handle = win32api.OpenProcess(win32con.PROCESS_ALL_ACCESS, False, pid) #get handle for the pid
filename = win32process.GetModuleFileNameEx(handle, 0) #get exe path & filename for handle

This works on windows only (obviously).

Anuj Gupta
  • 10,056
  • 3
  • 28
  • 32
  • 1
    Check out [Python for Windows](http://www.python.org/getit/windows/) for python versions that ship with the Win32 API bindings, or the [PyWin32](http://sourceforge.net/projects/pywin32/) package. Win32 API is the definitive API for almost everything that happens in Windows, and this library provides bindings to those API functions. – Anuj Gupta Oct 04 '12 at 12:12