我无法创建.vbs文件,因为此“”无法将其放入“”。 有例子: batch <<“ echo x = msgbox(” <-在哪里,而引号阻止了最后一个。我如何使它起作用?
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ofstream batch;
batch.open("name.bat");
batch<<"@echo off";
batch<<"echo x=msgbox("Your Text Here" ,0, "Your Title Here") >> msgbox.vbs";
batch<<
batch.close();
std::cin.get();
return 0;
}