Visual Studio Txt 檔案打開

Visual Studio Txt 檔案打開

我在 MacBook Air 上並行運行 Visual Studio。我第一次使用 C++ 打開 txt 文件,它似乎只在調試時才起作用,但在不調試的情況下運行時不起作用。

範例程式碼:

ofstream outfile;
outfile.open("Subscription.txt");
if (outfile.is_open())
{
    outfile << name << "\n";
    outfile.close();
    cout << "Welcome to the discount club!" << endl;
}
else
    cout << "file won't open" << endl;

當我在本地調試器中運行它時,它輸出“歡迎來到..”,當我在沒有調試的情況下運行它時,它輸出“文件無法打開”

也許這是某種 mac/parallels 問題?

相關內容