In my namespace extension, I have folders that doesn't actually exist in the file system.
Sometimes, when browsing my namespace extension, Explorer simply re-navigates the user back to the root folder.
For example, navigating to
C:\root\folder\subfolder
I'm redirected back to
C:\root
This happens in unclear scenarios, but keeps reproducing.
I'm trying to debug it and identify what messes with Explorer, but I can't find the right tool.
I've tried ProcMon
and DbgView
of sysinternals
, but couldn't find any relevant data.
I've added traces to any explicit calls I make to ShchangeNotify
, but none are executed at the relevant time.
I've also tried to add traces to my implementation of IShellFolderViewCB.MessageSFVCB()
. Again, no logs printed in the relevant timestamps.
I assume no one would be able to help my case without further information, but that applies to me as well. I need some better tool to catch the explorer events and identify what goes wrong.
Any suggestions?