#include <stdio.h>
#include <string.h>
#include <dirent.h>
#include <stdlib.h>
void listFilesRecursively(void *p);
struct data {
char path[100];
};
int main(int argc, char* argv[])
{
// Directory path to list files
struct data *d= (struct data *)malloc(sizeof(struct data *));
strcpy(d->path,argv[1]);
listFilesRecursively(d); //need to send a struct
return 0;
}
void listFilesRecursively(void *p)
{
struct data *d = (struct data *)p;
char path[100];
struct dirent *dp;
DIR *dir = opendir(d->path);
// Unable to open directory stream
if (!dir)
return;
while ((dp = readdir(dir)) != NULL)
{
if (strcmp(dp->d_name, ".") != 0 && strcmp(dp->d_name, "..") != 0)
{
printf("%sn", d->path);
struct data *nd= (struct data *)malloc(sizeof(struct data *));
// Construct new path from our base path
strcpy(path, d->path);
strcat(path, "/");
strcat(path, dp->d_name);
strcpy(nd->path,path);
listFilesRecursively(nd);
}
}
closedir(dir);
}
这个想法是列出我作为参数发送的目录中的文件和子目录。它适用于少数目录,然后我得到malloc((:损坏的顶部大小中止(堆芯转储(我可能是盲人,我看不出这个问题,有什么建议吗?提前感谢!
行
struct data *d= (struct data *)malloc(sizeof(struct data *));
struct data *nd= (struct data *)malloc(sizeof(struct data *));
是错误的,因为您必须为结构而不是为结构的指针进行分配。
它们应该是
struct data *d= malloc(sizeof(*d));
struct data *nd= malloc(sizeof(*nd));
或者(如果您坚持为sizeof
写入类型名称(:
struct data *d= malloc(sizeof(struct data));
struct data *nd= malloc(sizeof(struct data));
还要注意,不鼓励将malloc()
的结果投射到C中。