我正在使用dirent.h
以递归方式读取目录中的文件。在我的Debian GNU/Linux 7 (wheezy)
计算机上,它可以正常运行,但在Ubuntu 12.04 LTS
服务器上,它将所有文件读取为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);
}
}
}
答案 0 :(得分:1)
根据手册页(man 3 readdir
):(虽然这是来自Fedora,我猜Ubuntu赢得了不同之处)
目前,只有一些文件系统(其中包括:Btrfs,ext2,ext3, 和ext4)完全支持在d_type中返回文件类型。 所有应用程序必须正确处理DT_UNKNOWN的返回。
无法保证可以从d_type
读取文件类型。您应该回到使用stat
来获取所需的信息。