使用MFC创建txt文件并写入内容
时间: 2023-09-08 16:15:02 浏览: 323
MFC txt文件读写
好的,您可以通过以下代码创建一个txt文件并写入内容:
```
#include <fstream>
using namespace std;
void createTxtFile(string fileName) {
fstream file;
file.open(fileName, ios::out);
if (!file) {
cout << "Unable to create file!";
return;
}
// Write content to file
file << "This is the content of the file." << endl;
cout << "File created successfully!" << endl;
// Close the file
file.close();
}
```
其中,`fileName`是您想要创建的txt文件名,可以根据自己的需要进行修改。运行以上代码后,执行`createTxtFile("example.txt")`即可在同级目录下创建一个名为example.txt的文件,并将"This is the content of the file."写入文件中。
注意:以上代码是C++代码,您需要设置MFC工程使其支持C++。
阅读全文