当前位置: 代码迷 >> VC >> 生成BAT文件的代码如何写
  详细解决方案

生成BAT文件的代码如何写

热度:7430   发布时间:2013-02-25 00:00:00.0
生成BAT文件的代码怎么写?
代人发帖求助,他用VS2005写一个vc++的软件,其中一部要生成一个.bat的文件,这部分代码怎么写啊?我没写过C++的代码,所以特来求教。谢谢各位了

------解决方案--------------------------------------------------------
把批处理文件当作文本文件来写就行了。
C/C++ code
#include <iostream>#include <fstream>using namespace std;int main () {  ofstream myfile ("example.bat");  if (myfile.is_open())  {  myfile << "@ECHO OFF\r\n"; myfile << "ECHO data1\r\n"; myfile << "ECHO ok,gooooogoooooooooo\r\n";myfile << "PAUSE\r\n";  myfile.close();  }  else cout << "Unable to open file";  return 0;}
  相关解决方案