gpt4 book ai didi

c - 如何递归地遍历文件夹并计算总文件大小

转载 作者:行者123 更新时间:2023-11-30 14:48:56 25 4
gpt4 key购买 nike

我试图递归地遍历我的目录并打印文件大小,然后在最后打印所有文件大小的总和。我无法弄清楚要递归地传递我的函数的内容,并且我的变量总计最终并不正确,非常感谢任何帮助,非常感谢。

#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>

void do_ls(char[]);
int total = 0;

int main(int ac, char *av[])
{
if (ac == 1)
do_ls(".");
else
{
while (--ac) {
printf("%s:\n", *++av);
do_ls(*av);
}
}
}

void do_ls(char dirname[])
{
DIR *dir_ptr;
struct dirent *direntp;
struct stat info;

if ((dir_ptr = opendir(dirname)) == NULL)
fprintf(stderr, "ls01: cannot opern %s\n", dirname);
else
{
while((direntp = readdir(dir_ptr)) != NULL) {
stat(direntp->d_name, &info);
if (S_ISDIR(info.st_mode))
printf("%s\n", direntp->d_name);
//I believe recursion goes here, I tried the following
//do_ls(direntp->d_name);
else
printf("%d %s\n", (int)info.st_size, direntp->d_name);
total += (int)info.st_size;
}
closedir(dir_ptr);
}
printf("Your total is: %d \n", total);
}

最佳答案

行中:

while((direntp - readdir(dir_ptr)) != NULL)

你应该设置 direntp,而不是减去(我认为)。

关于c - 如何递归地遍历文件夹并计算总文件大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50091932/

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