首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

mfc怎么对txt文档进行动态读取?

2013-07-09 
mfc如何对txt文档进行动态读取????通过:CStdioFile filefile.Open(data\\****.txt,CFile::modeRead)wh

mfc如何对txt文档进行动态读取????
通过:
CStdioFile file;
file.Open("data\\****.txt",CFile::modeRead);
while( file.ReadString( szLine ) )
{str=(float)atof((char *)(LPTSTR)(LPCTSTR)szLine);}
能够实现对txt文档的逐行读取,现在我需要实现动态读取,也就是如果发现txt文档的值发生改变了就把改变的值读取进来,这要如何实现呢

热点排行