blob: f9c609cc984612bf954204af4e2096500455e944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#include <dirent.h>
#include <errno.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
int
main (void)
{
DIR *dirp;
struct dirent* ent;
/* open a dir stream */
dirp = opendir ("/tmp");
if (dirp == NULL)
{
if (errno == ENOENT)
exit (0);
perror ("opendir");
exit (1);
}
/* close the dir stream, making it invalid */
if (closedir (dirp))
{
perror ("closedir");
exit (1);
}
ent = readdir (dirp);
return ent != NULL || errno != EBADF;
}
|