gpt4 book ai didi

与 realpath() 缓冲区混淆

转载 作者:太空宇宙 更新时间:2023-11-04 02:44:35 24 4
gpt4 key购买 nike

<分区>

这是我的功能,它在给定目录中查找常规文件,然后将它们的完整路径存储在列表中。

static my_func(const char *path, Files **list) //list - storage for file names
{
DIR *d;
struct dirent *dir;
char buf[PATH_MAX + 1];

d = opendir(path);
if (d) {
while ((dir = readdir(d)) != NULL) {
if ((DT_REG == dir->d_type)) {

realpath(dir->d_name, buf);
List_push(list, buf);
printf("%s\n", dir->d_name);
// memset(buf, 0, PATH_MAX + 1);
}
}
}
closedir(d);
return 0;
}
...
...

int main()
{
// list creation
// my_func call
...
List_print(...)
}

预期输出:

FILE_1.txt
FILE_2.txt
FILE_3.txt
FILE_4.txt
FILE_5.txt
/home/user/c/FILE_1.txt
/home/user/c/FILE_2.txt
/home/user/c/FILE_3.txt
/home/user/c/FILE_4.txt
/home/user/c/FILE_5.txt

当前输出:

FILE_1.txt
FILE_2.txt
FILE_3.txt
FILE_4.txt
FILE_5.txt
/home/user/c/FILE_1.txt
/home/user/c/FILE_1.txt
/home/user/c/FILE_1.txt
/home/user/c/FILE_1.txt
/home/user/c/FILE_1.txt

会不会跟我的链表实现有关?它工作正常,因为我测试了它:

List_push(list, dir->d_name)

并得到了预期的结果。这是 List_push 的实现(文件只是带有 char * 和指向下一个元素的指针的简单结构):

void List_push(Files **head, char *x)
{
Files *new;

new = malloc(sizeof(Files));

if (NULL != new) {
new->next = *head;
new->text = x;
*head = new;
} else {
printf("malloc error");
}

}

此外,如您所见,我尝试使用 memset 清除 buf,但没有成功 - 输出为:

FILE_1.txt
FILE_2.txt
FILE_3.txt
FILE_4.txt
FILE_5.txt






[console]$

是的,空白处似乎填满了某些东西(或者这些只是来自 List_print 的 '\n' 符号),所以 list 不是空的。

这里有什么问题?

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