作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在尝试编写一个程序来搜索目录并列出与命令行参数匹配的内容时,我遇到了一个我似乎无法弄清楚的问题。
我在 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/
我有一个 Controller 需要从配置服务器刷新配置,因此我在其上添加了@RefreshScope。同时这个 Controller 需要调用后端API,以便我定义restTemplate Bean
我是一名优秀的程序员,十分优秀!