getline不将所有字符保存为字符串

问题描述 投票:-1回答:1

以下程序将目录列表保存到文件中。然后读取该文件并询问用户文件夹名称是否是收藏夹。我的问题是,getline函数不会将输入文件中的所有字符保存为字符串。这是代码:

int main()
{
    fstream list;
    fstream favorites;

    string command1;
    string command2;
    string file;
    string file2;
    string line;

    // Cycle through the directories outputing the list of directories to a file

    for (int i = 0; i < 27; i++)
    {
        system("Y:");
        command2 = "dir Y:\\Blu-Rays\\";
        command2 += letters[i];
        command2 += "\\";
        command2 += " /b > Y:\\Blu-Rays\\";
        command2 += letters[i];
        command2 += "\\files.txt";
        cout << command2 << endl;
        system(command2.c_str());

        file = "Y:\\Blu-Rays\\";
        file += letters[i];
        file += "\\files.txt";
        list.open(file);

        file2 = "Y:\\Blu-Rays\\";
        file2 += "favorites.txt";
        favorites.open(file2);

        // The dir command also lists the file.txt in the file, open the file and erase the line
        while (getline(list, line))
        {
            // If the line file.txt is recognized, do not append the line to the file
            if (line != "file.txt")
            {
                list << line << endl;
                save(line);
                line = "";
            }
        }
    }

    list.close();
    favorites.close();

    return 0;
}

以下是代码的输出:

dir Y:\Blu-Rays\#\ /b > Y:\Blu-Rays\#\files.txt
Current title: 2012
Do you want to save the title as a favorite? [y/n]: y
Current title: s to Kill
Do you want to save the title as a favorite? [y/n]: n
Current title: Rise of an Empire
Do you want to save the title as a favorite? [y/n]: n

输出的第4行应该是3天杀死,它读取杀死。接下来,第五行应该是:300:帝国的崛起,当它读取帝国的崛起

c++ string getline
1个回答
0
投票

同时从同一个std::fstream读取和写作可能不会达到您的预期。

一个更简单的解决方案是使用boost::filesystemstd::filesystem迭代文件:http://en.cppreference.com/w/cpp/experimental/fs

for(auto& path: fs::directory_iterator("y:\\blurays\\"))
        std::cout << path << '\n';
© www.soinside.com 2019 - 2024. All rights reserved.