我必须在C语言中创建树命令的模拟,这是我当前的代码:

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


main(int argc, char *argv[]){

int i;

if(argc < 2){
    printf("\nError. Use: %s directory\n", argv[0]);
    system("exit");
}
for(i=1;i<argc;i++)
    //if(argv[i][0] != '-')
        tree(argv[i]);
}

tree(char *ruta){

DIR *dirp;
struct dirent *dp;
static nivel = 0;
struct stat buf;
char fichero[256];
int i;

if((dirp = opendir(path)) == NULL){
    perror(path);
    return;
}

while((dp = readdir(dirp)) != NULL){
    printf(fichero, "%s/%s", path, dp->d_name);
    if((buf.st_mode & S_IFMT) == S_IFDIR){
        for(i=0;i<nivel;i++)
            printf("\t");
        printf("%s\n", dp->d_name);
        ++nivel;
        tree(fichero);
        --nivel;
    }

}
}

很明显,它起作用了!(因为它编译正确)但我不知道为什么。我无法传递正确的参数来执行此操作。
非常感谢大家。

最佳答案

在使用或声明原型之前,必须定义tree
treemain需要返回类型。
path未定义且使用了ruta。想必这些应该是一样的。
您永远不会调用stat来用从buf获得的文件填充dp
特别奖励:readdir是个坏主意。将其作为参数并让根级别传入0,然后在每次调用子级时传递nivel,这将更有意义。
而且,“它编译”并没有提到“它工作”,特别是在C语言中。

07-24 09:19