Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
辞書を作成していて、さまざまな種類のさまざまなフォルダーからさまざまなファイルを読み取らなければなりません! コンソールのディレクトリにフォルダを表示するコードを見つけました! ただし、これらのフォルダー内のtxtファイルを読み取る方法がわかりません! コンソールにファイル名を表示します!この問題で私を助けてください!
これがテキストファイルの読み方です
std::string line; std::ifstream file ("myfile.txt"); if (file.is_open()) { while (getline(file,line)) { std::cout << line << std::endl; } file.close(); } else { std::cout << "Unable to open file" << std::endl << std::endl; }