本文介绍了< dirent.h>在visual studio 2010或2008的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在我的代码中使用#include< dirent.h>
,但会发生此错误:
I want to use #include<dirent.h>
in my code but this error happen:
这个问题?
推荐答案
因为这个头文件不附带MSVC。因此找不到它!
Because this header file doesn't come with MSVC. Hence it cannot find it!
它附带 C POSIX库。 说,
- Turbo C ++(DOS)
- GCC(跨平台)
- MinGW(Microsoft Windows)
- Borland C ++ Builder >
- Turbo C++ (DOS)
- GCC (Cross-platform)
- MinGW (Microsoft Windows)
- Borland C++ Builder (Microsoft Windows)
Microsoft Visual C ++不包括
dirent.h
Microsoft Visual C++ does not include dirent.h
但是,您可以下载您可以使用Microsoft Visual Studio。
However, you can download free Windows implementation of dirent.h which you can use with Microsoft Visual Studio.
这篇关于< dirent.h>在visual studio 2010或2008的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!