需要帮助C程序搜索带有任何扩展名的文件(例如.xyz),并将文件名存储到变量中。
我可以在目录中搜索文件名,但无法将其移动到变量中获取段错误
这是代码
#include <stdio.h>
#include <regex.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <regex.h>
#if (defined( __STDC__) || defined(_WINDOWS)) && !defined(apollo)
#include <stdlib.h>
#endif
#include <time.h>
#include <errno.h>
//Fuction starting
char getfeature(char *dir)
{
DIR *dp;
struct dirent *entry;
regex_t regex;
int reti;
char msgbuf[100];
char feature;
/* Compile regular expression */
reti = regcomp(®ex, ".xyz$", 0);
if( reti )
{
fprintf(stderr, "Could not compile regex\n");
exit(1);
}
if((dp = opendir(dir)) == NULL) {
fprintf(stderr,"cannot open directory: %s\n", dir);
return;
}
while((entry = readdir(dp)) != NULL) {
reti = regexec(®ex, entry->d_name, 0, NULL, 0);
if( !reti ){
printf("this is match file %s\n", entry->d_name);
var1 = entry->d_name;
printf("This is feature file name %s", var1 );
return var1;
}
else printf("file not found\n");
}
chdir("..");
closedir(dp);
}
只有这部分给出了错误
var1 = entry->d_name;
printf("This is feature file name %s", var1 );
return var1;
答案 0 :(得分:0)
var1
是char
类型,因此无法存储字符串的地址
如果将其传递给%s
中的printf
,则会出现运行时错误。
请将var1
的类型更改为char*
。
请注意,我在上面评论过的错误更多。