mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
fix windows openFolder opening the parent folder instead
This commit is contained in:
parent
ed2a36b2ff
commit
9e973a931d
1 changed files with 7 additions and 1 deletions
|
@ -76,7 +76,13 @@ bool utils::file::openFolder(ghc::filesystem::path const& path) {
|
|||
auto success = false;
|
||||
if (CoInitializeEx(nullptr, COINIT_MULTITHREADED) == S_OK) {
|
||||
if (auto id = ILCreateFromPathW(path.wstring().c_str())) {
|
||||
if (SHOpenFolderAndSelectItems(id, 0, nullptr, 0) == S_OK) {
|
||||
ghc::filesystem::path selectPath = path / ".";
|
||||
std::error_code whatever;
|
||||
if (!ghc::filesystem::is_directory(path, whatever)) {
|
||||
selectPath = path;
|
||||
}
|
||||
auto selectEntry = ILCreateFromPathW(selectPath.wstring().c_str());
|
||||
if (SHOpenFolderAndSelectItems(id, 1, (PCUITEMID_CHILD_ARRAY)(&selectEntry), 0) == S_OK) {
|
||||
success = true;
|
||||
}
|
||||
ILFree(id);
|
||||
|
|
Loading…
Add table
Reference in a new issue