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 ?
|
I want to use
How can I solve this problem ? |
||||
|
Because this header file doesn't come with MSVC. Hence it cannot find it! It comes with C POSIX library. The wikipedia says,
However, you can download free Windows implementation of dirent.h which you can use with Microsoft Visual Studio. |
|||||
|
|
#include <io.h>– Hans Passant Apr 3 '11 at 17:32