Tuesday, October 24, 2006

Open file in directory (ต่อ)

ใน blog ที่แล้วผมเขียนให้ เปิด file ใน directory โดยถ้า file ข้างในนั้นไม่เป็น directory แต่ถ้าต้องการให้ traverse ลึกเข้าไปใน directory ข้างในด้วยอาจจะต้องอาศัย recursive มาช่วย เขียนออกมาได้เป็นดังนี้


#include <stdio.h>
#include <fcntl.h>
#include <dirent.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>

void listfileindir(const char *path);

int main(int argc, char *argv[])
{
if(argc != 2)
{
fprintf(stderr, "%s [dir]\n", argv[0]);
return -1;
}

listfileindir(argv[1]);

return 0;
}

void listfileindir(const char *path)
{
DIR *dir;
struct dirent *dp;
struct stat st;
FILE *fp;
char filename[100] = {0};
dir = opendir(path);

if(dir != NULL)
{
while((dp = readdir(dir)) != NULL)
{
if(!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
{
continue;
}
sprintf(filename, "%s/%s", path, dp->d_name);
stat(filename, &st);
if(S_ISREG(st.st_mode))
{
if((fp = fopen(filename, "r")) != NULL)
{
printf("%s\n", filename);
fclose(fp);
}
}
else if(S_ISDIR(st.st_mode))
{
listfileindir(filename);
}
else
{
continue;
}
}
closedir(dir);
}
}

0 Comments:

Post a Comment

<< Home