c++遍历文件夹的时候出现的问题

在linux系统下调用

    while ((ptr = readdir(dir)) != NULL) //循环读取目录数据
    {
string file_name_string = ptr->d_name;
std::cout<

然后打印的结果是下面,出现了. .. 这种东西,这是意料之外的,要对这种情况进行判断

.
..
image3690.txt

你可能感兴趣的:(c++遍历文件夹的时候出现的问题)