
I ran Process Monitor:
8\Web\webprojectitems.old","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize,
Disposition: Open, Options: Directory, Attributes: n/a, ShareMode: Read, Write, Delete,
AllocationSize: n/a","6440"
The line above is repeated approximately ever six seconds. It appears to be trying to create a file
in:
and getting a NAME NOT FOUND error. Which is reasonable since there isn't a "webprojectitems.old"
directory under "C:\Program Files\Microsoft Visual Studio 8\Web\."
This is for a simple Windows Forms project with no web components.
I created a directory:
and got the following two event messages in Process Monitor:
8\Web\webprojectitems.old","SUCCESS","Desired Access: Read Data/List Directory, Synchronize,
Disposition: Open, Options: Directory, Attributes: n/a, ShareMode: Read, Write, Delete,
AllocationSize: n/a, OpenResult: Opened","6440"
Studio 8\Web\webprojectitems.old","","Filter: FILE_NOTIFY_CHANGE_FILE_NAME,
FILE_NOTIFY_CHANGE_DIR_NAME, FILE_NOTIFY_CHANGE_ATTRIBUTES, FILE_NOTIFY_CHANGE_SIZE,
FILE_NOTIFY_CHANGE_LAST_WRITE","6440"
It is still in a CPU loop but no longer generating events that Process Monitor can see.
The original error was in CreateFile. The last two entries above indicate it was successful but the
directory is empty.
Anyone want to take a guess as to what is going on?