I'm sure it's not trivial, and I might be asking something absurd if so, tell me and I Will be done together. Is there a way to debug a Win32 application, such as I can see which addresses are to be read in the executable file in the given time given during some tasks (I mean that I click on the button on my own But filter data from more extreme versions of Process Explorer to see what is right to read the file)?
If you think the question is correct you can try Sysinternals Process Monitor . The program shows the realtime file system, registry and process activity - you can filter for specific process names, PIDs, only show file system operations, use file names and many more. It shows you each access file, offset, length, I / O-Flags and more. But keep in mind that most programs use something like cache (4KB / 16KB blocks or more in memory before processing Read More). In that case you can see how a portion of a file is used at a given time, but you do not see the program data while executing it. EDIT: No, I do not think you can take such a deep lock with Procmon.
Comments
Post a Comment