以下是一个简单的示例代码,演示了如何使用 CFile::Close 方法关闭文件:
#include <afx.h>
int main() {
CFile myFile;
// 假设文件名为 "example.txt",并以写入模式打开
if (myFile.Open(_T("example.txt"), CFile::modeWrite | CFile::modeCreate)) {
// 文件成功打开
// 在这里进行文件操作
// 关闭文件
myFile.Close();
} else {
// 文件打开失败
AfxMessageBox(_T("无法打开文件!"));
}
return 0;
}
在这个示例中,CFile 对象 myFile 打开了一个名为 "example.txt" 的文件,然后在文件操作完成后使用 CFile::Close 方法关闭了文件。
转载请注明出处:http://www.pingtaimeng.com/article/detail/17717/MFC/CFile