讀寫ini檔案
阿新 • • 發佈:2019-01-23
獲取exe執行檔案目錄
CString getExeDir()
{
TCHAR exepath[MAX_PATH];
CString strini,tmpdir;
memset(exepath,0,MAX_PATH);
GetModuleFileName(NULL,exepath,MAX_PATH);
tmpdir=exepath;
return tmpdir.Left(tmpdir.ReverseFind('\\'));
}
得到配置檔案目錄
strini+=_T("\\MyWeather.ini");
在output視窗輸出檢測資訊
//TRACE("strini %S\n",strini); OutputDebugString(strini.GetBuffer()); strini.ReleaseBuffer();
向ini檔案寫入資訊
::WritePrivateProfileString(_T("hello"),
_T("ni"),
_T("hao"),
_T("D:\\程式碼\\天氣\\時鐘以及整點更新天氣預報\\MyWeather\\Release\\hi.ini"));