I am the developer of xplorer2 <Removed>, a file manager like windows file explorer, and I want to report a windows BUG that affects my program.
since the latest windows 11 update (10.0-26100.4061) my program will not show the file copy progress window, a feature that works in all versions from windows 95 and up. The situation is quite technical to explain, so I will try to be succinct

no matter how I initiate the file copy (clipboard copy/paste, drag-drop, even using IFileOperation shell interface), the file is copied but without any visual feedback (the above progress window is missing). I will include some C++ code how am I handling a file paste operation:
IDataObject* source = OleGetClipboard();
IDropTarget* target = IShellFolder::GetUIObjectOf(IID_IDropTarget);
target->DragEnter(source, MK_LBUTTON | MK_CONTROL, POINT(0,0), DROPEFFECT_COPY);
target->Drop(source, MK_CONTROL, (0,0), &effect);
// copy works but no progress dialog is shown
I don't think the particular parameters used in this code block are relevant, as other parts of the program that SHOULD show a file progress indicator, do not show it either
please forward this to someone of the windows shell (file explorer) team for consideration
thank you in advance
Nikos Bozinis
PS. some people see the copy progress window only the first time they copy a file with xplorer2, then it goes silent from the 2nd file operation and for the duration of the program run
Reply