如在c++中写一个.ini配置文件
展开全部
和这个一样啊
---呵呵 很简单的
/*
本函数是完成将CString写入文本文件
txt_path----所需写入的文本文件的路径
txt_insStr---所需写入的文本字符串
*/
bool MLOG::LOG(CString txt_insStr,CString txt_name )
{
CStdioFile file;
//判断文本文件路径及插入的字符串是否合法
//CString txt_path,
//CString txt_name="log.txt";
try
{
file.Open(_T(txt_name),CFile::modeCreate | CFile::modeWrite | CFile::modeNoTruncate);
}
catch(CFileException e)
{
CString sBuf;
sBuf.Format( "不能打开 %s 文件", txt_name );
AfxMessageBox( sBuf );
return false;
}
//字符串长度
int len = 0;
len=txt_insStr.GetLength()-1;
if ( len<1 )
{
CString sBuf;
sBuf.Format( "不能插入长度为零的字符串" );
AfxMessageBox( sBuf );
return false;
}
//查找文件末尾并插入字符串
CString LsStr=_T("\r\n");
file.SeekToEnd();
file.WriteString(txt_insStr);
file.WriteString(LsStr);
file.Close();
return true;
}
---呵呵 很简单的
/*
本函数是完成将CString写入文本文件
txt_path----所需写入的文本文件的路径
txt_insStr---所需写入的文本字符串
*/
bool MLOG::LOG(CString txt_insStr,CString txt_name )
{
CStdioFile file;
//判断文本文件路径及插入的字符串是否合法
//CString txt_path,
//CString txt_name="log.txt";
try
{
file.Open(_T(txt_name),CFile::modeCreate | CFile::modeWrite | CFile::modeNoTruncate);
}
catch(CFileException e)
{
CString sBuf;
sBuf.Format( "不能打开 %s 文件", txt_name );
AfxMessageBox( sBuf );
return false;
}
//字符串长度
int len = 0;
len=txt_insStr.GetLength()-1;
if ( len<1 )
{
CString sBuf;
sBuf.Format( "不能插入长度为零的字符串" );
AfxMessageBox( sBuf );
return false;
}
//查找文件末尾并插入字符串
CString LsStr=_T("\r\n");
file.SeekToEnd();
file.WriteString(txt_insStr);
file.WriteString(LsStr);
file.Close();
return true;
}
2016-01-04
展开全部
(a-1)(a-1)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询