visual studio 代码不是 运行 ofstream 的代码原因

visual studio code not running code cause of ofstream

我已经设置了我的 Visual Studio 代码并且它工作正常,但是当我想使用 fstream 函数时,它没有 运行。这是一个例子:

#include <iostream>
#include <math.h>
#include <conio.h>
#include <fstream>
#include <string>
using namespace std;

void createfile();

int main(){
    int choice;
    cout << "Enter 1 to create file" << endl;
    cin >> choice;
    switch (choice){
        case 1:
            createfile();
            break;
        case 2:
            break;
    }
    return 0;
}

void createfile(){
    ofstream file ("file.txt");
    file.close();
}  

终端说:

PS D:\vs code cpp> cd "d:\vs code cpp\" ; if ($?) { g++ test.cpp -o test } ; if ($?) { .\test }

然后在尝试 运行 之后,它说:

PS D:\vs code cpp>

几乎没有。我什至重新安装了 Visual Studio 代码,但它没有用。

有人知道问题出在哪里吗?

我重新安装了mingw,成功了。