MFC中如何读取.ini配置文件

          这是从最近做的一个图像采集模块中抽出来的代码,用来读取可执行文件当前目录下的图像卡配置文文件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
  );

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值