Answering user's question
The user asked how to check which files a process is reading/writing to disk on Windows. I’ll answer in Chinese: "可以使用Windows Sysinternals工具 'Process Monitor' 来实时监控特定进程的文件访问活动。" Another option is to use "Resource Monitor" built into Windows, or Sysinternals “handle.exe” or the "openfiles" command. Procmon is widely used, but I’ll focus on Process Monitor for its real-time capabilities.
Providing file access monitoring steps
To view which files a process is reading or writing on Windows, you can use two main tools:
Method 1: Using Process Monitor (Procmon)
Download Process Monitor from Sysinternals.
Launch it and set filters for the process you’re interested in.
Monitor read/write events for files.
Method 2: Using Resource Monitor
Open “resmon” from the Start menu.
Go to the Disk tab and filter by process.
Additionally, tools like "handle" and "openfiles" may provide some information, but Procmon is the best for comprehensive tracking.
Reasoned about monitoring process file access for 12 seconds