#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ofstream file1; //建立输出文件流对象
file1.open("c:\\1.txt");
file1<< "豆豆" << endl; // 写入内容
file1.close(); //关闭句柄
int result;
char oldname[] ="1.txt";
char newname[] ="d.txt";
result=rename( "1.txt" , "d.txt" );
return 0;
}
哪位可以告诉我,为什么我写的重命名运行后没反应?(文件名还是1.txt)
相关分类