如何将 dirent.h 用法从 gcc 移植到 Windows 编译器

发布于 2024-12-10 15:55:39 字数 169 浏览 0 评论 0原文

我编写了一个程序,它递归地遍历目录并查找某种文件类型,使用“dirent.h”,它与 gcc 配合得很好(windows/Linux),但不幸的是我现在需要仅使用 windows 编译器来编译它它不知道“dirent.h”,因此无法编译。如何将 dirent 库导入到 Windows 编译器并将其静态链接到我的可执行文件?

I wrote a program that iterates through the directories recursively and looks for a certain filetype, using the "dirent.h" which works perfektly fine (windows/Linux) with the gcc, but unfortunately I now need to compile it just using the windows compiler which doesn't know the "dirent.h", and fails therefore to compile. How do I import the dirent library to the windows compiler and link it staticly to my executable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙与沫 2024-12-17 15:55:39

一种可能性是使用 Windows 的 dirent API 实现:链接

One possibility is to use this implementation of the dirent API for Windows: link.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文