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.
如何计算在他的所有子目录中的给定路径中包含 C 或 C++ 中给定字符串的 txt 文件的数量?
我只想通过给出 c 文件的名称和两个参数以及我要搜索的路径以及文件必须包含的字符串来从 cmd 运行程序。
看看正确的系统调用:opendir(),, readdir(). closedir()他们会让你遍历目录条目......
opendir()
readdir()
closedir()