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)中的所有文件?
我熟悉以下简单案例及其派生词:
ifstream inTestData; string inputFile("filename.txt"); inTestData.open(inputFile.c_str());
但我不确定您是否不知道文件名,并且目录中有多个文件,您想读取所有文件(假设您将所有 .txt 文件放在该目录中)。
有什么想法吗?
谢谢!