linux的驱动文件在哪个文件夹,在Linux下识别共享驱动器上的文件和文件夹

我试图使用以下代码列出共享驱动器上某个目录中的所有文件:

#include

#include

#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

不过,我希望这个代码也可以在其他平台上工作。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值