while循环,如果不与C中的readdir()相处

时间:2016-09-23 02:36:08

标签: c

在尝试编写将搜索目录并列出与命令行参数匹配的内容的程序时,我遇到了一个我似乎无法解决的问题。

我在while循环中放了一个if语句来检查字符串是否匹配,但问题是我只返回目录中的最后一个条目。如果我注释掉if语句,它会很好地打印整个目录,并且它很好地匹配字符串,但它不会同时执行这两种操作。

一位朋友建议它与堆栈有关但是因为它是在每次阅读后打印的,所以我不明白为什么会这样。

DIR *dirPos;
struct dirent * entry;
struct stat st;
char *pattern = argv[argc-1];

//----------------------
//a few error checks for command line and file opening
//----------------------

//Open directory
if ((dirPos = opendir(".")) == NULL){
    //error message if null
}

//Print entry
while ((entry = readdir(dirPos)) != NULL){
    if (!strcmp(entry->d_name, pattern)){
        stat(entry->d_name, &st);
        printf("%s\t%d\n", entry->d_name, st.st_size);
    }
}

1 个答案:

答案 0 :(得分:0)

必须将

entry定义为指针。 struct dirent* entry。我在c上编译了它,它工作正常。

#include <dirent.h>
#include <string.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>

int main( int argc, char **argv )
{
    DIR *dirPos;
    struct dirent* entry;
    struct stat st;
    char *pattern = argv[argc-1];

    //----------------------
    //a few error checks for command line and file opening
    //----------------------

    //Open directory
    if ((dirPos = opendir(".")) == NULL){
        //error message if null
    }

    //Print entry
    while ((entry = readdir(dirPos)) != NULL){
        if (!strcmp(entry->d_name, pattern)){
            stat(entry->d_name, &st);
            printf("%s\t%d\n", entry->d_name, st.st_size);
        }
    }

    return 0;
}