2

我正在尝试通过使用列出 UROP 目录中包含的所有文件stat()。但是,该目录不仅包含文件,还包含我也想搜索的文件夹。因此,我使用递归来访问我想要列出其文件的文件夹。

但是,if我的循环中的条件无法区分文件和目录,所有文件都显示为目录;结果是无限递归代码如下。先感谢您!

using namespace std;

bool analysis(const char dirn[],ofstream& outfile)
{
    cout<<"New analysis;"<<endl;
    struct stat s;
    struct dirent *drnt = NULL;
    DIR *dir=NULL;

    dir=opendir(dirn);
    while(drnt = readdir(dir)){
        stat(drnt->d_name,&s);
        if(s.st_mode&S_IFDIR){
            if(analysis(drnt->d_name,outfile))
            {
                cout<<"Entered directory;"<<endl;
            }
        }
        if(s.st_mode&S_IFREG){
            cout<<"entered condition;"<<endl;
            cout<<drnt->d_name<<endl;
        }

    }
    return 1;
}
4

1 回答 1

0

而不是if(s.st_mode&S_IFDIR)and if(s.st_mode&S_IFREG)
尝试if (S_ISDIR(s.st_mode))and if (S_ISREG(s.st_mode))

于 2013-05-01T22:59:23.793 回答