gpt4 book ai didi

C++ : loop on all files of a folder (and its subdfolders) : simplest solution?

转载 作者:太空宇宙 更新时间:2023-11-04 11:54:43 24 4
gpt4 key购买 nike

使用 C++、OS=Windows 对文件夹(及其子文件夹)的所有 .mp3 文件进行循环的最短解决方案是什么?如果可能,我想避免使用第 3 方的东西,例如 boost,但如果不可能,我会使用这些第 3 方的东西(如果易于安装)。

提前致谢。

(PS:我确定这个问题非常非常非常普遍,并且肯定已经回答了,但是经过 10 分钟的搜索,我没有找到有用的东西。)

最佳答案

C++ 本身没有获取文件夹中的文件或文件夹的功能,因为这是特定于操作系统的。

如果你想要跨平台兼容性,Boost 是最好的选择,但对于 Windows,你可以在这里查看答案: How can I get the list of files in a directory using C or C++?

简单替换

printf ("%s\n", ent->d_name);

检查 ent->d_name 的最后 4 个字符以查看它们是否为“.mp3”,然后对该文件执行您想要的操作。

关于C++ : loop on all files of a folder (and its subdfolders) : simplest solution?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16626512/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com