我正在尝试使用以下代码列出共享驱动器上某个目录中的所有文件:
#include <iostream>
#include <string>
#include "dirent.h"
int main ()
{
DIR *directoryHandle = opendir("./temp/");
if (NULL != directoryHandle)
{
dirent *entry = readdir(directoryHandle);
while (NULL != entry)
{
//skip directories and select only files (hopefully)
if ((DT_DIR != entry->d_type) && (DT_REG == entry->d_type || DT_UNKNOWN == entry->d_type))
{
std::cout << "Name: " << entry->d_name << " Type:" << std::to_string(entry->d_type) << std::endl;
}
//go to next entry
entry = readdir(directoryHandle);
}
closedir(directoryHandle);
}
return 0;
}
问题是 entry->d_type 包含目录的 DT_UNKNOWN 以及目录中的文件./temp/
。
是否有任何(可靠的)特定于 linux 的方法来尝试读取每个条目并确定它是文件还是目录?
的输出cat /etc/SuSE-release
是:
SUSE Linux Enterprise Desktop 11 (x86_64) VERSION = 11 PATCHLEVEL = 1
Linux版本为:2.6.32.59-0.7-default
不过,我希望这段代码也能在其他平台上运行。