【发布时间】:2020-04-08 19:02:44
【问题描述】:
我是编程新手。我想从默认安装目录访问所有目录和子目录,但遍历文件夹失败,这里我将路径传递给常量 char。下面是代码
using namespace std;
int reading(const char *d_path)
{
cout<<"In Reading"<<endl;
/*bfs::path pathSource("c:\\Program Files\\");*/
struct stat info; //
DIR *dir;
struct dirent *ent;
dir= opendir (d_path);
cout<<dir<<endl;
if ((dir = opendir (d_path)) != NULL)
{
cout<<"in IF"<<endl;
while ((ent = readdir (dir)) != NULL)
{
if (ent->d_name[0] != NULL)
{
cout<<"New"<<endl;
string path = string (d_path) + string(ent->d_name) + '\\' ;
cout<< "Entry = "<<path<<endl;
stat (path,&info);
if(S_ISDIR(info.st_mode))
{
reading(path);
}
}
}
closedir (dir);
}
/* print all the files and directories within directory */
else
{
/* could not open directory */
perror ("");
}
return 0;
}
【问题讨论】:
-
建议——您可以轻松生成simple function that demonstrated the error。现在您看到了该示例,您明白为什么会出现错误吗?
标签: c++