我的程序没有打开文件中的数据。我没有错。我错过了一些重要的内容吗?

时间:2017-12-11 20:11:16

标签: c++

inputFile.open("V:\CmpSci201\Labs\PlayerStats.txt");
cout << "2017 Baseball Stats\n";

if (inputFile)
{
    getline(inputFile, stats);

    while (inputFile >> stats)
    {
// ...
inputFile.close();
    }
    else
    {
        cout << "Error Opening the file.\n";
    }
// ...

1 个答案:

答案 0 :(得分:5)

由于反斜杠是C ++字符串中的转义字符,因此必须使用两个反斜杠来包含文字反斜杠。所以你想要"V:\\CmpSci201\\Labs..."