2

我很难创建一个 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;
}
4

1 回答 1

5

您设计的主要问题是工作目录是进程的属性,而不是单个线程。因此chdir在一个线程中搞乱了所有其他线程。要解决这个问题,您要么需要从每个组件构建相对或绝对路径名,要么使用 POSIX 2008 中添加的新“at”接口(openat等)。

于 2013-05-12T00:51:48.420 回答