Find out what file does a program attempt to read

222 Views Asked by At

I've got third party Winamp plug-in in windows, that should be able to load its datafile.

The datafile is located in same folder as the plug-in, but can not be found. My idea is that plug-in searches in some pre-defined path. So I need somehow to find out what file read attempt is done to place file in the appropriate place.

1

There are 1 best solutions below

5
On BEST ANSWER

Best way to do this is to use Process Monitor from Sysinternals suite (http://technet.microsoft.com/sysinternals/bb896645)

Set up filters to watch only the examined program and look for 'CreateFile' operations, which are also read attempts.