Description
The context menu command "Open containing folder" (IDM_EDIT_OPENINFOLDER) currently uses ShellExecute to launch explorer.exe /select. This creates a new explorer.exe process each time, which remains in Task Manager even after closing the folder window.
Expected behavior
It should reuse an existing Explorer window (like the main menu command "File -> Open containing folder", which was fixed in PR #17265).
Actual behavior
A new explorer.exe process is spawned each time and lingers.
Steps to reproduce
- Open any file in Notepad++.
- Right-click on a file path in the editor and choose "Open containing folder".
- Close the opened folder.
- Check Task Manager – an extra
explorer.exe process remains.
Additional context
I have a fix ready and would like to be assigned to this issue.
Description
The context menu command "Open containing folder" (
IDM_EDIT_OPENINFOLDER) currently usesShellExecuteto launchexplorer.exe /select. This creates a newexplorer.exeprocess each time, which remains in Task Manager even after closing the folder window.Expected behavior
It should reuse an existing Explorer window (like the main menu command "File -> Open containing folder", which was fixed in PR #17265).
Actual behavior
A new
explorer.exeprocess is spawned each time and lingers.Steps to reproduce
explorer.exeprocess remains.Additional context
IDM_FILE_OPEN_FOLDERbut notIDM_EDIT_OPENINFOLDER)I have a fix ready and would like to be assigned to this issue.