I am using dirent.h
to read files in directories recursively. On my Debian GNU/Linux 7 (wheezy)
machine it works properly, however on an Ubuntu 12.04 LTS
server it reads all files as DT_UNKOWN!
if ((dir = opendir (input_dir)) != NULL)
{
while ((ent = readdir (dir)) != NULL)
{
// cat dir path to file
char full_file_path[FILE_NAME_LENGTH];
strcpy (full_file_path, input_dir);
strcat (full_file_path, "/");
strcat (full_file_path, ent->d_name);
// if "." or "..", skip it
if (!strcmp (ent->d_name, ".") || !strcmp (ent->d_name, ".."));
// if a regular file, process it
else if (ent->d_type == DT_REG)
{
process_file (full_file_path, f_out, z, ws);
}
// if a directory, recurse through it
else if (ent->d_type == DT_DIR)
{
// add '/' to the end of the directory path
process_directory (full_file_path, f_out, z, ws);
}
else
{
printf ("%s is neither a regular file nor a directory!\n",
full_file_path);
}
}
}