[BUG_FIXED] Fix Setting on cloud for Google drive unrecognized regression.

This commit is contained in:
Don Ho 2015-05-08 04:12:12 +02:00
parent 572f67f511
commit 91f9751a85
1 changed files with 13 additions and 3 deletions

View File

@ -1029,15 +1029,25 @@ generic_string NppParameters::getCloudSettingsPath(CloudChoice cloudChoice)
int valType;
::RegQueryValueEx(hGoogleDriveKey, TEXT("Path"), NULL, (LPDWORD)&valType, (LPBYTE)valData, (LPDWORD)&valDataLen);
if (::PathFileExists(valData))
if (::PathFileExists(valData)) // Windows 8
{
googleDriveInfoDB = valData;
PathAppend(googleDriveInfoDB, TEXT("\\user_default\\sync_config.db"));
}
else // Windows 7
{
// try to guess google drive info path
ITEMIDLIST *pidl2;
SHGetSpecialFolderLocation(NULL, CSIDL_LOCAL_APPDATA, &pidl2);
TCHAR tmp2[MAX_PATH];
SHGetPathFromIDList(pidl2, tmp2);
googleDriveInfoDB = tmp2;
PathAppend(googleDriveInfoDB, TEXT("Google\\Drive\\sync_config.db"));
}
::RegCloseKey(hGoogleDriveKey);
}
PathAppend(googleDriveInfoDB, TEXT("\\user_default\\sync_config.db"));
generic_string settingsPath4GoogleDrive = TEXT("");
if (::PathFileExists(googleDriveInfoDB.c_str()))