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
37
38
39
40
41
42
43
44
45
46
47
|
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <libsmbclient.h>
int
main(int argc, char * argv[])
{
char * p;
char buf[1024];
DIR * dir;
struct dirent * dirent;
setbuf(stdout, NULL);
for (fputs("path: ", stdout), p = fgets(buf, sizeof(buf), stdin);
p != NULL && *p != '\n' && *p != '\0';
fputs("path: ", stdout), p = fgets(buf, sizeof(buf), stdin))
{
if ((p = strchr(buf, '\n')) != NULL)
{
*p = '\0';
}
printf("Opening (%s)...\n", buf);
if ((dir = opendir(buf)) == NULL)
{
printf("Could not open directory [%s]: \n",
buf, strerror(errno));
continue;
}
while ((dirent = readdir(dir)) != NULL)
{
printf("%-30s", dirent->d_name);
printf("%-30s", dirent->d_name + strlen(dirent->d_name) + 1);
printf("\n");
}
closedir(dir);
}
exit(0);
}
|