gpt4 book ai didi

c - while 循环和 if 与 C 中的 readdir() 相处不好

转载 作者:行者123 更新时间:2023-11-30 16:57:12 24 4
gpt4 key购买 nike

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

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

一位 friend 建议它与堆栈有关,但由于它在每次读取后都会打印,我不明白为什么会这样。

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);
}
}

最佳答案

entry 必须定义为指针。 struct dirent* 条目。我在 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;
}

关于c - while 循环和 if 与 C 中的 readdir() 相处不好,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39651705/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com