我想解析一個SHGetSpecialFolderPath
到一個字符串,一個System::String^
準確。
我現在使用此代碼:SHGetSpecialFolderPath到系統::字符串^
TCHAR appDataPath;
SHGetSpecialFolderPath(0, appDataPath, CSIDL_APPDATA, false);
我已經試過這樣的事情,但它不工作之一:
LPWSTR appDataPath;
SHGetSpecialFolderPath(0, appDataPath, CSIDL_APPDATA, false);
我只是想獲得一個System::String^
這樣的:
System::String^loc_inst = appDataPath + "\\inst\\info.xml";
改爲使用Environment :: GetFolderPath()。 –