Can someone explain why the Delphi IDE is attempting to access 600K files/directories in less than five minutes? More so, why it keeps accessing the same paths over and over? Am I missing a search path?


Can someone explain why the Delphi IDE is attempting to access 600K files/directories in less than five minutes? More so, why it keeps accessing the same paths over and over? Am I missing a search path?

Comments

  1. Wish the Path column was a little wider to see what files are trying to be accessed. Looks like it's trying to create files in different places and failing and retrying over and over.

    ReplyDelete
  2. My guess would be that you have the Refactoring feature open while this happens. The .Net part of the IDE is quite busy accessing many files on the hard disk. Actually it seems to be more a problem of .Net itself and not the IDE.
    On the other hand it's quite normal to have a large amount of file access logged via ProcMon as it also logs the whole process of parsing folders and subfolders, getting file attributes etc. before the actual file access happens.

    ReplyDelete
  3. Fred Ahrens Fair enough, but over 100.000 files per minute!?

    ReplyDelete
  4. It has done that since the beginning of the Galileo IDE. I'm pretty sure it was brought up in the forums back then, but like many threads: no answer.

    ReplyDelete

Post a Comment