我是编程新手。我想访问默认安装目录中的所有目录和子目录,但无法遍历文件夹,这里我将路径传递给常量char.Below是代码
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;
}发布于 2020-04-09 07:24:15
使用stat(path.c_str())等string::c_str()方法将C++字符串转换为C字符串。
有关详细信息,请参阅http://cplusplus.com/reference/string/string/c_str/。
https://stackoverflow.com/questions/61108104
复制相似问题