MFC中如何讀取.ini設定檔

來源:互聯網
上載者:User

          這是從最近做的一個映像採集模組中抽出來的代碼,用來讀取可執行檔目前的目錄下的映像卡配置文檔案MonitorCard.ini

int m_ScanMode    = (int)GetPrivateProfileInt("Video Parameter", "Scan", 100, "./MonitorCard.ini" );

int m_VideoStandard   = (int)GetPrivateProfileInt("Video Parameter", "Standard", 100,                                                                                             "./MonitorCard.ini" );

int m_VideoFormat   = (int)GetPrivateProfileInt("Video Parameter","Format",100,"./MonitorCard.ini");

int type  = (int)GetPrivateProfileInt("Video Parameter","VideoSourceType",100,"./MonitorCard.ini");

int nIndex = (int)GetPrivateProfileInt("Video Parameter","VideoSourceIndex",100,"./MonitorCard.ini");

int m_CryOsc    = (int)GetPrivateProfileInt("Video Parameter","CryOsc",100,"./MonitorCard.ini"); 

            其中MonitorCard.ini檔案的格式如下:

[Video Parameter]
Scan=0
Standard=0
Format=4
VideoSourceType=0
VideoSourceIndex=0
CryOsc=0

           這樣,GetPrivateProfileInt函數四個參數的含義就一目瞭然了!

注意:GetPrivateProfileString中最後一個參數也就是設定檔的位置不能寫相對目錄,必須是絕對目錄,因此我們可以這樣處理:

 

CString path;
 ::GetCurrentDirectory(_MAX_PATH,path.GetBuffer(_MAX_PATH));
 path.ReleaseBuffer();
 path += "/config.ini";

 DWORD len = GetPrivateProfileString(
  "DZH",
  "AppName",
  "預設字串內容",
  m_appName.GetBuffer(_MAX_PATH),
  _MAX_PATH,
  path
  );

 

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.