我很难创建一个 C 程序,它将把目录中的所有大小相加,然后递归地进入任何其他目录来做同样的事情。
不幸的是,它进入当前目录之上的目录,并不断地获取该目录的文件,直到出现段错误。有任何想法吗?
到目前为止,这是我的代码:首先是线程函数,然后是 main 中的相应部分
void *directorywork(void *path)
{
/*some declarations here*/
size_t numbers_len = sizeof(statbuf.st_size)/sizeof(int);
dp = opendir(path);
chdir(path);
while((dirnext = readdir(dp)) != NULL)
{
stat(dirnext->d_name,&statbuf);
// passing over directories above the requested directory
if(strcmp(dirnext->d_name, ".") == 0)
{
continue;
}
if(strcmp(dirname->d_name, "..") == 0)
{
continue;
}
if(!S_ISDIR(statbuf.st_mode))
{
printf("File %s is %d bytes\n", dirnext->d_name, (int)statbuf.st_size);
pthread_mutex_lock(&crit);
fsum = sum + (int)statbuf.st_size;
pthread_mutex_unlock(&crit);
}
else
{
pthread_create(&tids[i++], NULL, directorywork, (void*)path);
i++;
}
}
}
中的代码main()
:
int main(int argc, char *argv[]) {
/*some string input parsing*/
int k;
psize(NULL);
for (k = 0; k < i; k++)
{
pthread_join(tids[k], NULL);
}
printf("Total sum of all directories is: %d\n\n", fsum);
free(firstpath);
free(path);
return 0;
}