Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use #include<dirent.h> in my code but this error happen:

Cannot open include file: 'dirent.h': No such file or directory

How can I solve this problem ?

share|improve this question
16 questions and no answer accepted? Why don't you accept answers to your questions? – Nawaz Apr 3 '11 at 16:51
It is too heavily tied to *nix. On Windows use _findfirst/_findnext to iterate directories, #include <io.h> – Hans Passant Apr 3 '11 at 17:32

1 Answer

Because this header file doesn't come with MSVC. Hence it cannot find it!

It comes with C POSIX library. The wikipedia says,

dirent.h is known to be included in the following compilers:

  • Turbo C++ (DOS)
  • GCC (Cross-platform)
  • MinGW (Microsoft Windows)
  • Borland C++ Builder (Microsoft Windows)

Microsoft Visual C++ does not include dirent.h

However, you can download free Windows implementation of dirent.h which you can use with Microsoft Visual Studio.

share|improve this answer
How can I use it in visual studio ? – woody Apr 3 '11 at 16:48
@woody: this site explains that : softagalleria.net/dirent.php – Nawaz Apr 3 '11 at 16:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.